summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/io/qprocess/testProcessEnvironment/main.cpp
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2016-05-30 18:05:39 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2016-06-02 08:03:37 +0000
commit5803a9ba5718cd8b79321e3291fdae952f7c55e1 (patch)
tree7f5959e2762e4f338a576d72ff39edacfa66793e /tests/auto/corelib/io/qprocess/testProcessEnvironment/main.cpp
parentf08da971861636df69e5e2ac2f8a3acafdd92c38 (diff)
Remove Windows CE vestiges
Remove every usage of the _WIN32_WCE macro outside of 3rd party source code directories. Change-Id: Ia7e859bd6dcaef10c66674612c8e440f9a2dee56 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'tests/auto/corelib/io/qprocess/testProcessEnvironment/main.cpp')
-rw-r--r--tests/auto/corelib/io/qprocess/testProcessEnvironment/main.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/auto/corelib/io/qprocess/testProcessEnvironment/main.cpp b/tests/auto/corelib/io/qprocess/testProcessEnvironment/main.cpp
index 4de359d83f..9f13f5c00f 100644
--- a/tests/auto/corelib/io/qprocess/testProcessEnvironment/main.cpp
+++ b/tests/auto/corelib/io/qprocess/testProcessEnvironment/main.cpp
@@ -31,10 +31,6 @@
int main(int argc, char **argv)
{
-#if defined(_WIN32_WCE)
- // no environment in Windows CE
- return 0;
-#else
if (argc == 1)
return 1;
@@ -44,5 +40,4 @@ int main(int argc, char **argv)
return 0;
}
return 1;
-#endif
}