summaryrefslogtreecommitdiffstats
path: root/tests/auto/qcssparser/qcssparser.pro
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2009-10-06 07:34:12 +0200
committerJoerg Bornemann <joerg.bornemann@nokia.com>2009-10-06 09:33:03 +0200
commit7851cbd64d15d39a0e9cc99efa6c2d007c935ce9 (patch)
tree69792ea8a2479c83dc72eaef9363cff629c15718 /tests/auto/qcssparser/qcssparser.pro
parentb1310cb8fcc4b48750f82502a7140f2ebb8a44c7 (diff)
tst_QCssParser::extractFontFamily fix Windows CE font deployment
On Windows mobile we usually don't have the "Times New Roman" font. Thus we must deploy and register it, if its not available. Reviewed-by: mauricek
Diffstat (limited to 'tests/auto/qcssparser/qcssparser.pro')
-rw-r--r--tests/auto/qcssparser/qcssparser.pro8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/auto/qcssparser/qcssparser.pro b/tests/auto/qcssparser/qcssparser.pro
index 2f991428a5..6ce559b4d5 100644
--- a/tests/auto/qcssparser/qcssparser.pro
+++ b/tests/auto/qcssparser/qcssparser.pro
@@ -3,9 +3,11 @@ SOURCES += tst_qcssparser.cpp
DEFINES += SRCDIR=\\\"$$PWD\\\"
QT += xml
-
-wince*: {
+wince* {
addFiles.sources = testdata
addFiles.path = .
- DEPLOYMENT += addFiles
+ timesFont.sources = C:/Windows/Fonts/times.ttf
+ timesFont.path = .
+ DEPLOYMENT += addFiles timesFont
}
+