summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-09-28 16:03:54 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-09-28 16:03:54 (GMT)
commite364e7c006d27c030c8d02d49fece5e6130ee84e (patch)
tree02b6c800e4418da636ae43dacce34c56ade6dd60 /doc
parent8b533a7564c634e6e7228c5e02832d55513777b5 (diff)
parentc4ef479906f073fa84999eb950f00e264ebd4e8e (diff)
downloadQt-e364e7c006d27c030c8d02d49fece5e6130ee84e.zip
Qt-e364e7c006d27c030c8d02d49fece5e6130ee84e.tar.gz
Qt-e364e7c006d27c030c8d02d49fece5e6130ee84e.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: 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')
-rw-r--r--doc/src/development/qmake-manual.qdoc2
-rw-r--r--doc/src/snippets/code/doc_src_qmake-manual.qdoc7
2 files changed, 8 insertions, 1 deletions
diff --git a/doc/src/development/qmake-manual.qdoc b/doc/src/development/qmake-manual.qdoc
index 754b8ad..98e136f 100644
--- a/doc/src/development/qmake-manual.qdoc
+++ b/doc/src/development/qmake-manual.qdoc
@@ -1088,7 +1088,7 @@
For example:
- \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 146
+ \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 152
This will add the specified statements to the \c prj_exports section of the
generated \c bld.inf file.
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]