From d120755d15b633ee1fe962672ace1493a40e361e Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Tue, 6 Oct 2015 19:01:00 -0300 Subject: Simplify code Do not call the setAttributte *everytime* the Preferences is called, call it once on the constructor. Also, no need to call the LanguageModel::instance() on the instance method, it will be already called on the constructor it seems that it's a leftover from a long while. Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- qt-ui/preferences.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'qt-ui') diff --git a/qt-ui/preferences.cpp b/qt-ui/preferences.cpp index 715745e84..6450c41cb 100644 --- a/qt-ui/preferences.cpp +++ b/qt-ui/preferences.cpp @@ -23,14 +23,13 @@ PreferencesDialog *PreferencesDialog::instance() { static PreferencesDialog *dialog = new PreferencesDialog(MainWindow::instance()); - dialog->setAttribute(Qt::WA_QuitOnClose, false); - LanguageModel::instance(); return dialog; } PreferencesDialog::PreferencesDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f) { ui.setupUi(this); + setAttribute(Qt::WA_QuitOnClose, false); #if defined(Q_OS_ANDROID) || !defined(FBSUPPORT) for (int i = 0; i < ui.listWidget->count(); i++) { -- cgit v1.2.3-70-g09d2