summaryrefslogtreecommitdiff
path: root/src/plugins/fakevim/fakevimplugin.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@theqtcompany.com>2015-08-05 15:20:14 +0200
committerEike Ziller <eike.ziller@theqtcompany.com>2015-08-10 11:55:01 +0000
commit8261b98d7e1d9e12457a37401d19eb80511688a5 (patch)
treeb77885484e10638b985573ea91403204997a4ef7 /src/plugins/fakevim/fakevimplugin.cpp
parent64d8ac488069a54381f0c3483d4dfd8f0430490f (diff)
downloadqt-creator-8261b98d7e1d9e12457a37401d19eb80511688a5.tar.gz
Preferences: Options pages need unique IDs
Since we are referring to them by ID without specifying the category in addition. This requirement was implicitly added by 592ffe737794c59045b6d2f7964621ecfd44dea3 Task-number: QTCREATORBUG-14742 Change-Id: I7be539127b76de90c19b0282565d845fa42010ab Reviewed-by: Robert Loehning <robert.loehning@theqtcompany.com> Reviewed-by: hjk <hjk@theqtcompany.com>
Diffstat (limited to 'src/plugins/fakevim/fakevimplugin.cpp')
-rw-r--r--src/plugins/fakevim/fakevimplugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp
index 1cb4c0f041..9b7aa2ef73 100644
--- a/src/plugins/fakevim/fakevimplugin.cpp
+++ b/src/plugins/fakevim/fakevimplugin.cpp
@@ -111,9 +111,9 @@ namespace Internal {
const char INSTALL_HANDLER[] = "TextEditor.FakeVimHandler";
const char SETTINGS_CATEGORY[] = "D.FakeVim";
const char SETTINGS_CATEGORY_FAKEVIM_ICON[] = ":/fakevim/images/category_fakevim.png";
-const char SETTINGS_ID[] = "A.General";
-const char SETTINGS_EX_CMDS_ID[] = "B.ExCommands";
-const char SETTINGS_USER_CMDS_ID[] = "C.UserCommands";
+const char SETTINGS_ID[] = "A.FakeVim.General";
+const char SETTINGS_EX_CMDS_ID[] = "B.FakeVim.ExCommands";
+const char SETTINGS_USER_CMDS_ID[] = "C.FakeVim.UserCommands";
typedef QLatin1String _;
class MiniBuffer : public QStackedWidget