summaryrefslogtreecommitdiffstats
path: root/doc/src/tutorials
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@nokia.com>2011-01-19 12:58:48 (GMT)
committerMartin Smith <martin.smith@nokia.com>2011-01-19 12:58:48 (GMT)
commitebaf3a991d0ef0533c829305ae1968bed41e2773 (patch)
tree0da2ef1bd95affd9794452121839ac190f71cc3b /doc/src/tutorials
parent74f63cebc430ef6634917577783dafeed9a233d5 (diff)
downloadQt-ebaf3a991d0ef0533c829305ae1968bed41e2773.zip
Qt-ebaf3a991d0ef0533c829305ae1968bed41e2773.tar.gz
Qt-ebaf3a991d0ef0533c829305ae1968bed41e2773.tar.bz2
qdoc: Fixed some validation errors in the DITA files
11 instances of raw-html remain.
Diffstat (limited to 'doc/src/tutorials')
-rw-r--r--doc/src/tutorials/widgets-tutorial.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/tutorials/widgets-tutorial.qdoc b/doc/src/tutorials/widgets-tutorial.qdoc
index 42c8852..925b143 100644
--- a/doc/src/tutorials/widgets-tutorial.qdoc
+++ b/doc/src/tutorials/widgets-tutorial.qdoc
@@ -133,7 +133,7 @@
In the following example, we use QWidget to create and show a window with
a default size:
- \div {qt-code}
+ \div {class="qt-code"}
\table
\row
\o \snippet tutorials/widgets/toplevel/main.cpp main program
@@ -155,7 +155,7 @@
passing \c window as the parent to its constructor. In this case, we add a
button to the window and place it in a specific location:
- \div {qt-code}
+ \div {class="qt-code"}
\table
\row
\o \snippet tutorials/widgets/childwidget/main.cpp main program
@@ -177,7 +177,7 @@
construct a label and line edit widget that we would like to arrange
side-by-side.
- \div {qt-code}
+ \div {class="qt-code"}
\table
\row
\o \snippet tutorials/widgets/windowlayout/main.cpp main program
@@ -215,7 +215,7 @@
\c{mainLayout} is a QVBoxLayout that contains \c{queryLayout} and a
QTableView arranged vertically.
- \div {qt-code}
+ \div {class="qt-code"}
\table
\row
\o \snippet tutorials/widgets/nestedlayouts/main.cpp first part