diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-09-30 03:30:46 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-09-30 03:30:46 (GMT) |
commit | d6eb899ee2c937a871dd945a995e2fd4a3eb7821 (patch) | |
tree | 15b0971d121e54427747630c54eb3f660455a90a /doc/src/snippets/code | |
parent | 8b533a7564c634e6e7228c5e02832d55513777b5 (diff) | |
parent | 6d980ae8985e3856ab87c4d0aaada3bcdc5fa1e5 (diff) | |
download | Qt-d6eb899ee2c937a871dd945a995e2fd4a3eb7821.zip Qt-d6eb899ee2c937a871dd945a995e2fd4a3eb7821.tar.gz Qt-d6eb899ee2c937a871dd945a995e2fd4a3eb7821.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public:
Skip tst_QFont::lastResortFont() for Q_WS_QWS
Fixed failure of benchlibcallgrind selftest on some platforms.
Fix QFontMetrics::lineWidth() for fonts with defined point size
Implemeting, exporting and autotesting QFont::lastResortFont()
Fixed compile error on non-Symbian platforms.
Fixed regression when typing in QTextControl based widgets on Symbian
Fixed incorrect snippet in BLD_INF_RULES documentation
Streamlined smart installer package creation
Diffstat (limited to 'doc/src/snippets/code')
-rw-r--r-- | doc/src/snippets/code/doc_src_qmake-manual.qdoc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/src/snippets/code/doc_src_qmake-manual.qdoc b/doc/src/snippets/code/doc_src_qmake-manual.qdoc index 4ac7d5e..8c35c3f 100644 --- a/doc/src/snippets/code/doc_src_qmake-manual.qdoc +++ b/doc/src/snippets/code/doc_src_qmake-manual.qdoc @@ -1002,3 +1002,10 @@ symbian { RSS_RULES.service_list += "uid = 0x12345678; datatype_list = \{\}; opaque_data = r_my_icon;" RSS_RULES.footer +="RESOURCE CAPTION_AND_ICON_INFO r_my_icon \{ icon_file =\"$$PWD/my_icon.svg\"; \}" //! [151] + +//! [152] +my_exports = \ + "foo.h /epoc32/include/mylib/foo.h" \ + "bar.h /epoc32/include/mylib/bar.h" +BLD_INF_RULES.prj_exports += my_exports +//! [152] |