diff options
author | Joerg Bornemann <joerg.bornemann@qt.io> | 2016-06-20 13:34:16 +0200 |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@qt.io> | 2016-06-20 12:51:43 +0000 |
commit | f4159d04953e67b213b80a91ff70acb7fefd5534 (patch) | |
tree | 71ced1cc5613fc086f1fb26ae1a3e46662c9a0a3 /qmake | |
parent | a2f319e9fb2f7595fc16d0d79e26438463051a53 (diff) | |
download | qtbase-f4159d04953e67b213b80a91ff70acb7fefd5534.tar.gz |
Remove Windows CE vestige
Change-Id: I07bd55c55f8b69dd7c58da8876ca985debf235dc
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'qmake')
-rw-r--r-- | qmake/generators/win32/winmakefile.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/qmake/generators/win32/winmakefile.cpp b/qmake/generators/win32/winmakefile.cpp index 0846cb2d8f..af9fe520f1 100644 --- a/qmake/generators/win32/winmakefile.cpp +++ b/qmake/generators/win32/winmakefile.cpp @@ -290,11 +290,7 @@ void Win32MakefileGenerator::processRcFileVar() int rcLang = project->intValue("RC_LANG", 1033); // default: English(USA) int rcCodePage = project->intValue("RC_CODEPAGE", 1200); // default: Unicode - ts << "# if defined(UNDER_CE)\n"; - ts << "# include <winbase.h>\n"; - ts << "# else\n"; - ts << "# include <windows.h>\n"; - ts << "# endif\n"; + ts << "#include <windows.h>\n"; ts << endl; if (!rcIcons.isEmpty()) { for (int i = 0; i < rcIcons.size(); ++i) |