diff options
author | hjk <hjk@qt.io> | 2020-06-26 13:59:38 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2020-07-06 06:07:13 +0000 |
commit | 430a33dcd9ac80ddb848e41f8f059102857c88aa (patch) | |
tree | 9af1619701306a6bad6a06645091f2d3b2838e9c /src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp | |
parent | 492439262079dcf1d5c503208b905be8c82a694b (diff) | |
download | qt-creator-430a33dcd9ac80ddb848e41f8f059102857c88aa.tar.gz |
Core/Utils: Migrate further to Utils::Id
The coreplugin/id.h header is kept for downstream for now.
Change-Id: I8c44590f7b988b3770ecdc177c40783e12353e66
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp')
-rw-r--r-- | src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp b/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp index 0edbb60aa9..bd2959b83c 100644 --- a/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp +++ b/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp @@ -654,7 +654,7 @@ void CppToolsPlugin::test_format_pointerdeclaration_macros_data() "public:\n" " typedef QPair<QString, QString> Item;\n" " \n" - " Core::Id dataId(); // the higher the closer to top.\n" + " Utils::Id dataId(); // the higher the closer to top.\n" " \n" " unsigned int priority() = 0;\n" " \n" @@ -675,7 +675,7 @@ void CppToolsPlugin::test_format_pointerdeclaration_macros_data() "public:\n" " typedef QPair<QString, QString> Item;\n" " \n" - " Core::Id dataId(); // the higher the closer to top.\n" + " Utils::Id dataId(); // the higher the closer to top.\n" " \n" " unsigned int priority() = 0;\n" " \n" |