From c61f0bcf3ec38ba7fd30f5768fc632629673ae3c Mon Sep 17 00:00:00 2001 From: amer cerkic Date: Fri, 7 Jun 2019 14:07:06 -0700 Subject: [PATCH] more vs cleanup --- interface/src/ui/PreferencesDialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/src/ui/PreferencesDialog.cpp b/interface/src/ui/PreferencesDialog.cpp index 65595bac95..9149762fa4 100644 --- a/interface/src/ui/PreferencesDialog.cpp +++ b/interface/src/ui/PreferencesDialog.cpp @@ -55,7 +55,7 @@ void setupPreferences() { } // Graphics quality - static const QString GRAPHICS_QUALITY{ "Graphics Quality" }; + static const QString GRAPHICS_QUALITY { "Graphics Quality" }; { auto getter = []()->float { return DependencyManager::get()->getWorldDetailQuality(); @@ -105,7 +105,7 @@ void setupPreferences() { } // UI - static const QString UI_CATEGORY{ "User Interface" }; + static const QString UI_CATEGORY { "User Interface" }; { auto getter = []()->bool { return qApp->getSettingConstrainToolbarPosition(); }; auto setter = [](bool value) { qApp->setSettingConstrainToolbarPosition(value); }; @@ -206,7 +206,7 @@ void setupPreferences() { }*/ // Snapshots - static const QString SNAPSHOTS{ "Snapshots" }; + static const QString SNAPSHOTS { "Snapshots" }; { auto getter = []()->QString { return DependencyManager::get()->_snapshotsLocation.get(); }; auto setter = [](const QString& value) { DependencyManager::get()->_snapshotsLocation.set(value); emit DependencyManager::get()->snapshotLocationSet(value); };