summaryrefslogtreecommitdiffstats
path: root/doc/src/qt4-intro.qdoc
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2011-02-07 13:04:48 (GMT)
committerDavid Boddie <david.boddie@nokia.com>2011-02-07 13:04:48 (GMT)
commit6d6cd91519842b18b2d520391d330346a2f6def1 (patch)
tree957d18172896e21475629b14d535c36f52b7bcac /doc/src/qt4-intro.qdoc
parenteb5e587af8867fa57ee764441905bdf982ab43c6 (diff)
downloadQt-6d6cd91519842b18b2d520391d330346a2f6def1.zip
Qt-6d6cd91519842b18b2d520391d330346a2f6def1.tar.gz
Qt-6d6cd91519842b18b2d520391d330346a2f6def1.tar.bz2
Doc: Fixed warnings and other problems found while fixing markup.
Diffstat (limited to 'doc/src/qt4-intro.qdoc')
-rw-r--r--doc/src/qt4-intro.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/qt4-intro.qdoc b/doc/src/qt4-intro.qdoc
index 6effbfa..3cabb1c 100644
--- a/doc/src/qt4-intro.qdoc
+++ b/doc/src/qt4-intro.qdoc
@@ -328,7 +328,7 @@
With Qt 4, the Qt class has become the Qt namespace. If you want
to access a constant that is part of the Qt namespace, prefix it
- with \c Qt:: (e.g., \c{Qt::yellow}), or add the directive
+ with \c{Qt::} (e.g., \c{Qt::yellow}), or add the directive
\snippet doc/src/snippets/code/doc_src_qt4-intro.qdoc 7
@@ -341,7 +341,7 @@
in Qt 3, it was legal to write \c QWidget::yellow instead of \c
Qt::yellow, because QWidget inherited from Qt. This won't work in
Qt 4; you must write \c Qt::yellow or add the "using namespace"
- directive and drop the \c Qt:: prefix.
+ directive and drop the \c{Qt::} prefix.
The \l{qt3to4 - The Qt 3 to 4 Porting Tool}{qt3to4} porting tool
automates this conversion.