diff options
author | Christian Kandeler <christian.kandeler@qt.io> | 2021-02-05 09:39:14 +0100 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@qt.io> | 2021-02-09 10:00:56 +0000 |
commit | 058841e8deb7865d875d1e6ffcb190b2a9125730 (patch) | |
tree | 10cab4b9e41623cf226d130dc958af0517ddd441 /src/plugins/cpptools/cpptoolsconstants.h | |
parent | 27eb98faf2bd016b7a3e779d128760f4fe881b13 (diff) | |
download | qt-creator-058841e8deb7865d875d1e6ffcb190b2a9125730.tar.gz |
Locator: Enable to show C++ type aliases
These were not showing up in any global symbol list so far.
Fixes: QTCREATORBUG-5800
Change-Id: I8e5c3b9b26f09d8cbcd31431e28c103da05d9bf8
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/cpptools/cpptoolsconstants.h')
-rw-r--r-- | src/plugins/cpptools/cpptoolsconstants.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cpptoolsconstants.h b/src/plugins/cpptools/cpptoolsconstants.h index 2a3bfe13a8..bae185d090 100644 --- a/src/plugins/cpptools/cpptoolsconstants.h +++ b/src/plugins/cpptools/cpptoolsconstants.h @@ -89,7 +89,7 @@ const char INCLUDES_FILTER_ID[] = "All Included C/C++ Files"; const char INCLUDES_FILTER_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("CppTools", "All Included C/C++ Files"); const char LOCATOR_FILTER_ID[] = "Classes and Methods"; -const char LOCATOR_FILTER_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("CppTools", "C++ Classes, Enums and Functions"); +const char LOCATOR_FILTER_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("CppTools", "C++ Classes, Enums, Functions and Type Aliases"); const char SYMBOLS_FIND_FILTER_ID[] = "Symbols"; const char SYMBOLS_FIND_FILTER_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("CppTools", "C++ Symbols"); |