diff options
author | Ken Moore <ken@ixsystems.com> | 2017-08-31 14:39:56 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-08-31 14:39:56 -0400 |
commit | 3d02eea401b5a5571eeec34fbc75cc48f87c2bcb (patch) | |
tree | 946082f7db3fe99ad914da90b7b25c7ade7129d9 /src-qt5/core/libLumina/DesktopSettings.cpp | |
parent | A large amount of cleanup: (diff) | |
download | lumina-3d02eea401b5a5571eeec34fbc75cc48f87c2bcb.tar.gz lumina-3d02eea401b5a5571eeec34fbc75cc48f87c2bcb.tar.bz2 lumina-3d02eea401b5a5571eeec34fbc75cc48f87c2bcb.zip |
A bit more cleanup. Nothing too special.
Diffstat (limited to 'src-qt5/core/libLumina/DesktopSettings.cpp')
-rw-r--r-- | src-qt5/core/libLumina/DesktopSettings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/DesktopSettings.cpp b/src-qt5/core/libLumina/DesktopSettings.cpp index bce634f1..f1c74bc5 100644 --- a/src-qt5/core/libLumina/DesktopSettings.cpp +++ b/src-qt5/core/libLumina/DesktopSettings.cpp @@ -65,10 +65,10 @@ QList< DesktopSettings::File > DesktopSettings::writableFiles(){ QVariant DesktopSettings::value(DesktopSettings::File file, QString variable, QVariant defaultvalue){ if(!files.contains(file)){ return defaultvalue; } for(int i=0; i<files[file].length(); i++){ - qDebug() << "Look for Settings value:" << variable << files[file]; + //qDebug() << "Look for Settings value:" << variable << files[file]; if( settings.contains(files[file][i])){ //make sure this file is in the settings hash if(settings[files[file][i]]->contains(variable)){ //if this file does not have the variable - go to the next one - qDebug() << " - Found Setting in File:" << files[file][i]; + //qDebug() << " - Found Setting in File:" << files[file][i]; return settings[files[file][i]]->value(variable, defaultvalue); } } |