diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-05-06 13:15:16 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-05-10 11:19:22 +0200 |
commit | 87c09c0ab5e1334e9877ee6fd7adeb1eb70d5929 (patch) | |
tree | 3f407f9d0fc947427729913cf60e2e5f9b962ce0 /gui/main-window.cpp | |
parent | 604914db84d0468c6c8d04dfe6491e3c15b670f7 (diff) |
options: don't create QSettings all the time
Update usages.
Diffstat (limited to 'gui/main-window.cpp')
-rw-r--r-- | gui/main-window.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gui/main-window.cpp b/gui/main-window.cpp index d64858c4..96be298e 100644 --- a/gui/main-window.cpp +++ b/gui/main-window.cpp @@ -277,6 +277,14 @@ void MainWindow::die_on_config_not_writable() bool MainWindow::maybe_die_on_config_not_writable(const QString& current, QStringList* ini_list_) { + const bool writable = + group::with_settings_object([&](QSettings& s) { + return s.isWritable(); + }); + + if (writable) + return false; + const bool open = QFile(group::ini_combine(current)).open(QFile::ReadWrite); const QStringList ini_list = group::ini_list(); |