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>
This commit is contained in:
Stephen Kelly 2013-03-19 23:10:40 +01:00 committed by The Qt Project
parent 9ff6237a83
commit ecb20e57d4

View File

@ -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()