diff options
author | Friedemann Kleint <[email protected]> | 2009-11-27 16:12:12 +0100 |
---|---|---|
committer | Friedemann Kleint <[email protected]> | 2009-11-27 16:12:12 +0100 |
commit | a8ac34c34770fe329d6f0afbf60e0009fa8bb28e (patch) | |
tree | 779e96b71417ae1040aa465c091711d4ccf2c9a9 /src/plugins/cpptools/cppfilesettingspage.cpp | |
parent | f92814516366c83a32d6e87185ca5bff53560711 (diff) |
Options: Sort by category, id.
Separate category and trCategory and introduce sorting characters
to the categories. Same for id/name.
Diffstat (limited to 'src/plugins/cpptools/cppfilesettingspage.cpp')
-rw-r--r-- | src/plugins/cpptools/cppfilesettingspage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cpptools/cppfilesettingspage.cpp b/src/plugins/cpptools/cppfilesettingspage.cpp index f1b7cce8697..017c35cdf0e 100644 --- a/src/plugins/cpptools/cppfilesettingspage.cpp +++ b/src/plugins/cpptools/cppfilesettingspage.cpp @@ -306,7 +306,7 @@ QString CppFileSettingsPage::id() const QString CppFileSettingsPage::trName() const { - return QCoreApplication::translate("CppTools", Constants::CPP_SETTINGS_ID); + return QCoreApplication::translate("CppTools", Constants::CPP_SETTINGS_NAME); } QString CppFileSettingsPage::category() const @@ -316,7 +316,7 @@ QString CppFileSettingsPage::category() const QString CppFileSettingsPage::trCategory() const { - return QCoreApplication::translate("CppTools", Constants::CPP_SETTINGS_CATEGORY); + return QCoreApplication::translate("CppTools", Constants::CPP_SETTINGS_TR_CATEGORY); } QWidget *CppFileSettingsPage::createPage(QWidget *parent) |