diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2011-12-21 12:24:39 +0200 |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2011-12-21 12:31:18 +0200 |
commit | aa3351315c9cb2c76933918635c007c1c57ccbf9 (patch) | |
tree | 2c490e112fba4c0391516b4a027f6bbf86e04a84 /tests/auto/qlayout | |
parent | 9a8b3bfaeb7c1e4f1c25bfda6de37de0c506ed1a (diff) | |
download | qt4-tools-aa3351315c9cb2c76933918635c007c1c57ccbf9.tar.gz |
Symbian: Fix SRCDIR usage in qlayout autotest.
SRCDIR was not defined at all in Symbian builds.
Task-number: ou1cimx1#957098
Reviewed-by: mread
Diffstat (limited to 'tests/auto/qlayout')
-rw-r--r-- | tests/auto/qlayout/tst_qlayout.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qlayout/tst_qlayout.cpp b/tests/auto/qlayout/tst_qlayout.cpp index 96f88634bc..be3998f911 100644 --- a/tests/auto/qlayout/tst_qlayout.cpp +++ b/tests/auto/qlayout/tst_qlayout.cpp @@ -60,6 +60,10 @@ # include <QtGui/QMacStyle> #endif +#if defined(Q_OS_SYMBIAN) +# define SRCDIR "." +#endif + //TESTED_CLASS= //TESTED_FILES= |