diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2011-12-21 09:51:19 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2011-12-21 10:02:44 (GMT) |
commit | 9a8b3bfaeb7c1e4f1c25bfda6de37de0c506ed1a (patch) | |
tree | 052165d5bda37471bad9b58d36a3c338df6c571b | |
parent | 1f6c979713257f9668a322f2e120652f09d3ee16 (diff) | |
download | Qt-9a8b3bfaeb7c1e4f1c25bfda6de37de0c506ed1a.zip Qt-9a8b3bfaeb7c1e4f1c25bfda6de37de0c506ed1a.tar.gz Qt-9a8b3bfaeb7c1e4f1c25bfda6de37de0c506ed1a.tar.bz2 |
Symbian: Fix qcssparser autotest
No need to deploy "c:/windows/fonts/times.ttf" into Symbian devices,
as they already have that font by default. The code that loads this
file is only executed in WinCE, so it was never used in Symbian,
anyway.
Task-number: ou1cimx1#957049
Reviewed-by: mread
-rw-r--r-- | tests/auto/qcssparser/qcssparser.pro | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/auto/qcssparser/qcssparser.pro b/tests/auto/qcssparser/qcssparser.pro index fc3daa3..0600860 100644 --- a/tests/auto/qcssparser/qcssparser.pro +++ b/tests/auto/qcssparser/qcssparser.pro @@ -10,8 +10,11 @@ requires(contains(QT_CONFIG,private_tests)) wince*|symbian: { addFiles.files = testdata addFiles.path = . + DEPLOYMENT += addFiles +} +wince* { timesFont.files = c:/windows/fonts/times.ttf timesFont.path = . - DEPLOYMENT += addFiles timesFont + DEPLOYMENT += timesFont } |