use overloaded constructors to create tests

This commit is contained in:
2016-05-19 16:28:19 +03:00
parent f717c984b7
commit e71da9bdfb
20 changed files with 29 additions and 90 deletions

View File

@ -35,20 +35,8 @@ AWDateTimeFormatter::AWDateTimeFormatter(QWidget *parent,
{
qCDebug(LOG_LIB) << __PRETTY_FUNCTION__;
readConfiguration();
ui->setupUi(this);
translate();
}
AWDateTimeFormatter::AWDateTimeFormatter(const QString format, QWidget *parent)
: AWAbstractFormatter(parent)
, ui(new Ui::AWDateTimeFormatter)
{
qCDebug(LOG_LIB) << __PRETTY_FUNCTION__;
setFormat(format);
if (!filePath.isEmpty())
readConfiguration();
ui->setupUi(this);
translate();
}