diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-07-08 23:29:49 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-07-08 23:29:49 +0200 |
commit | fa1801471c2708ed8266ec7b99bd4cec886ccc1b (patch) | |
tree | aa56218c2c7e4939aaf11a2046b0f12760326545 /variant/default/new_file_dialog.cpp | |
parent | 90940a774eab876c38d5cef981b4be5bae67a462 (diff) |
options: fix 2 issues
1. Calling valueChanged didn't invoke machinery in
value<t>, only base_value aka value_.
There's a fast path in value<t>::type() despite the
pessimization.
2. Split global scope stuff into options::globals from
the options::globals stuff
3. Adjust usages
Diffstat (limited to 'variant/default/new_file_dialog.cpp')
-rw-r--r-- | variant/default/new_file_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/variant/default/new_file_dialog.cpp b/variant/default/new_file_dialog.cpp index 2da9ce56..70816c5d 100644 --- a/variant/default/new_file_dialog.cpp +++ b/variant/default/new_file_dialog.cpp @@ -23,7 +23,7 @@ void new_file_dialog::ok_clicked() text = text.replace('\\', ""); if (text != "" && !text.endsWith(".ini")) text += ".ini"; - if (text == "" || text == ".ini" || QFile(options::group::ini_directory() + "/" + text).exists()) + if (text == "" || text == ".ini" || QFile(options::globals::ini_directory() + "/" + text).exists()) { QMessageBox::warning(this, tr("File exists"), |