aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-search
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-07 20:43:34 -0400
committerKen Moore <ken@ixsystems.com>2017-06-07 20:43:34 -0400
commitd8911d73cef90f952d807d472f32386fcedcde9e (patch)
tree037a8a3298af4a6cc64b82a1b30b6816824bfe49 /src-qt5/core-utils/lumina-search
parentMake all the desktop utilities use the new LUtils::openSettings() function so... (diff)
downloadlumina-d8911d73cef90f952d807d472f32386fcedcde9e.tar.gz
lumina-d8911d73cef90f952d807d472f32386fcedcde9e.tar.bz2
lumina-d8911d73cef90f952d807d472f32386fcedcde9e.zip
Switch the core-utilities (lumina-search) over to using the LUtils::openSettings() function.
Diffstat (limited to 'src-qt5/core-utils/lumina-search')
-rw-r--r--src-qt5/core-utils/lumina-search/MainUI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core-utils/lumina-search/MainUI.cpp b/src-qt5/core-utils/lumina-search/MainUI.cpp
index b3e28f8a..28c2adc8 100644
--- a/src-qt5/core-utils/lumina-search/MainUI.cpp
+++ b/src-qt5/core-utils/lumina-search/MainUI.cpp
@@ -46,7 +46,7 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){
connect(closeShort, SIGNAL(activated()), this, SLOT( close() ) );
//Setup the settings file
- settings = new QSettings("lumina-desktop", "lumina-search",this);
+ settings = LUtils::openSettings("lumina-desktop", "lumina-search",this);
searcher->startDir = settings->value("StartSearchDir", QDir::homePath()).toString();
searcher->skipDirs = settings->value("SkipSearchDirs", QStringList()).toStringList();
updateDefaultStatusTip();
bgstack15