diff options
author | David Boddie <david.boddie@nokia.com> | 2010-09-03 12:23:33 (GMT) |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2010-09-03 12:23:33 (GMT) |
commit | a2203d680d8a24113daab08046154c2c5234df4f (patch) | |
tree | 431d24e146bd3211abef22c18e106ccfa7613626 | |
parent | 2bb571fe49d05b06b13aedc4f7fb71cbb1c949be (diff) | |
download | Qt-a2203d680d8a24113daab08046154c2c5234df4f.zip Qt-a2203d680d8a24113daab08046154c2c5234df4f.tar.gz Qt-a2203d680d8a24113daab08046154c2c5234df4f.tar.bz2 |
Doc: Fixed namespaced Qt build breakage in the model/view tutorial.
Reviewed-by: hjk
4 files changed, 6 insertions, 12 deletions
diff --git a/examples/tutorials/modelview/3_changingmodel/mymodel.h b/examples/tutorials/modelview/3_changingmodel/mymodel.h index 47b026e..87c3dba 100755 --- a/examples/tutorials/modelview/3_changingmodel/mymodel.h +++ b/examples/tutorials/modelview/3_changingmodel/mymodel.h @@ -42,8 +42,7 @@ #define MYMODEL_H #include <QAbstractTableModel> - -class QTimer; // forward declaration +#include <QTimer> class MyModel : public QAbstractTableModel { diff --git a/examples/tutorials/modelview/5_edit/mainwindow.h b/examples/tutorials/modelview/5_edit/mainwindow.h index 1d49f47..ac5b77b 100755 --- a/examples/tutorials/modelview/5_edit/mainwindow.h +++ b/examples/tutorials/modelview/5_edit/mainwindow.h @@ -42,8 +42,7 @@ #define MAINWINDOW_H #include <QtGui/QMainWindow> - -class QTableView; //forward declaration +#include <QtGui/QTableView> class MainWindow : public QMainWindow { diff --git a/examples/tutorials/modelview/6_treeview/mainwindow.h b/examples/tutorials/modelview/6_treeview/mainwindow.h index fb8de79..4c4ddb0 100755 --- a/examples/tutorials/modelview/6_treeview/mainwindow.h +++ b/examples/tutorials/modelview/6_treeview/mainwindow.h @@ -42,10 +42,8 @@ #define MAINWINDOW_H #include <QtGui/QMainWindow> - -class QTreeView; //forward declaration -class QStandardItemModel; -class QStandardItem; +#include <QtGui/QTreeView> +#include <QtGui/QStandardItemModel> class MainWindow : public QMainWindow diff --git a/examples/tutorials/modelview/7_selections/mainwindow.h b/examples/tutorials/modelview/7_selections/mainwindow.h index f2defb5..a8f8488 100755 --- a/examples/tutorials/modelview/7_selections/mainwindow.h +++ b/examples/tutorials/modelview/7_selections/mainwindow.h @@ -42,10 +42,8 @@ #define MAINWINDOW_H #include <QtGui/QMainWindow> - -class QTreeView; //forward declaration -class QStandardItemModel; -class QItemSelection; +#include <QtGui/QTreeView> +#include <QtGui/QStandardItemModel> class MainWindow : public QMainWindow |