summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Kelly <stephen.kelly@kdab.com>2013-03-19 23:10:40 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-20 23:28:15 +0100
commitecb20e57d4980320e4155ca03bc62dd8055feeb9 (patch)
tree5a9e8723586d410d9be4650b16e8688958a79789
parent9ff6237a83144617f7e6943c5009066b4621c7f2 (diff)
Rename the qtinclude variable to qtclass.
Change-Id: If454627be464e388cb8f529a6041d3ec804f22ce Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
-rw-r--r--src/corelib/Qt5CTestMacros.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/Qt5CTestMacros.cmake b/src/corelib/Qt5CTestMacros.cmake
index b313cd5c08..fd9ada874c 100644
--- a/src/corelib/Qt5CTestMacros.cmake
+++ b/src/corelib/Qt5CTestMacros.cmake
@@ -134,18 +134,18 @@ function(test_module_includes)
set(instances_string "")
while(all_args)
list(GET all_args 0 qtmodule)
- list(GET all_args 1 qtinclude)
+ list(GET all_args 1 qtclass)
list(REMOVE_AT all_args 0 1)
set(includes_string
"${includes_string}
- #include <${qtinclude}>
- #include <Qt${qtmodule}/${qtinclude}>
+ #include <${qtclass}>
+ #include <Qt${qtmodule}/${qtclass}>
#include <Qt${qtmodule}>
#include <Qt${qtmodule}/Qt${qtmodule}>"
)
set(instances_string
"${instances_string}
- ${qtinclude} local${qtinclude};
+ ${qtclass} local${qtclass};
")
endwhile()