diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-05-24 16:32:27 +0200 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-05-24 16:32:27 +0200 |
commit | 0fe41f1ac984f70037ea7717bc5660ddfaf6a4e5 (patch) | |
tree | cd25a0704915cff54a490c01920fd5cef2e4120e /examples/xmlpatterns | |
parent | a2adca3e63803ace785033bb43423a4961e0f2d0 (diff) | |
download | qtxmlpatterns-0fe41f1ac984f70037ea7717bc5660ddfaf6a4e5.tar.gz |
QtXmlPatterns: Widget library split.
Diffstat (limited to 'examples/xmlpatterns')
-rw-r--r-- | examples/xmlpatterns/filetree/filetree.pro | 2 | ||||
-rw-r--r-- | examples/xmlpatterns/filetree/main.cpp | 2 | ||||
-rw-r--r-- | examples/xmlpatterns/filetree/mainwindow.cpp | 3 | ||||
-rw-r--r-- | examples/xmlpatterns/recipes/querymainwindow.cpp | 3 | ||||
-rw-r--r-- | examples/xmlpatterns/recipes/recipes.pro | 2 | ||||
-rw-r--r-- | examples/xmlpatterns/schema/schema.pro | 2 | ||||
-rw-r--r-- | examples/xmlpatterns/trafficinfo/main.cpp | 2 | ||||
-rw-r--r-- | examples/xmlpatterns/trafficinfo/mainwindow.cpp | 4 | ||||
-rw-r--r-- | examples/xmlpatterns/trafficinfo/mainwindow.h | 2 | ||||
-rw-r--r-- | examples/xmlpatterns/trafficinfo/stationdialog.h | 2 | ||||
-rw-r--r-- | examples/xmlpatterns/trafficinfo/trafficinfo.pro | 2 |
11 files changed, 14 insertions, 12 deletions
diff --git a/examples/xmlpatterns/filetree/filetree.pro b/examples/xmlpatterns/filetree/filetree.pro index 943030b..bb24f77 100644 --- a/examples/xmlpatterns/filetree/filetree.pro +++ b/examples/xmlpatterns/filetree/filetree.pro @@ -1,7 +1,7 @@ SOURCES += main.cpp filetree.cpp mainwindow.cpp ../shared/xmlsyntaxhighlighter.cpp HEADERS += filetree.h mainwindow.h ../shared/xmlsyntaxhighlighter.h FORMS += forms/mainwindow.ui -QT += xmlpatterns +QT += widgets xmlpatterns RESOURCES += queries.qrc INCLUDEPATH += ../shared/ diff --git a/examples/xmlpatterns/filetree/main.cpp b/examples/xmlpatterns/filetree/main.cpp index 939072a..339b62a 100644 --- a/examples/xmlpatterns/filetree/main.cpp +++ b/examples/xmlpatterns/filetree/main.cpp @@ -38,7 +38,7 @@ ** ****************************************************************************/ -#include <QtGui/QApplication> +#include <QtWidgets/QApplication> #include "mainwindow.h" diff --git a/examples/xmlpatterns/filetree/mainwindow.cpp b/examples/xmlpatterns/filetree/mainwindow.cpp index 43502ce..96cb793 100644 --- a/examples/xmlpatterns/filetree/mainwindow.cpp +++ b/examples/xmlpatterns/filetree/mainwindow.cpp @@ -38,7 +38,8 @@ ** ****************************************************************************/ -#include <QtGui> +#include <QFileDialog> +#include <QMessageBox> #include <QLibraryInfo> #include <QtXmlPatterns> diff --git a/examples/xmlpatterns/recipes/querymainwindow.cpp b/examples/xmlpatterns/recipes/querymainwindow.cpp index 95a8669..2393306 100644 --- a/examples/xmlpatterns/recipes/querymainwindow.cpp +++ b/examples/xmlpatterns/recipes/querymainwindow.cpp @@ -38,7 +38,8 @@ ** ****************************************************************************/ -#include <QtGui> +#include <QMessageBox> +#include <QFileDialog> #include <QtXmlPatterns> #include "querymainwindow.h" diff --git a/examples/xmlpatterns/recipes/recipes.pro b/examples/xmlpatterns/recipes/recipes.pro index ef01132..93b8bfc 100644 --- a/examples/xmlpatterns/recipes/recipes.pro +++ b/examples/xmlpatterns/recipes/recipes.pro @@ -1,4 +1,4 @@ -QT += xmlpatterns +QT += widgets xmlpatterns FORMS += forms/querywidget.ui \ forms/querywidget_mobiles.ui HEADERS = querymainwindow.h ../shared/xmlsyntaxhighlighter.h diff --git a/examples/xmlpatterns/schema/schema.pro b/examples/xmlpatterns/schema/schema.pro index 6fa16ef..aa2162a 100644 --- a/examples/xmlpatterns/schema/schema.pro +++ b/examples/xmlpatterns/schema/schema.pro @@ -1,4 +1,4 @@ -QT += xmlpatterns +QT += widgets xmlpatterns FORMS += schema.ui schema_mobiles.ui HEADERS = mainwindow.h ../shared/xmlsyntaxhighlighter.h RESOURCES = schema.qrc diff --git a/examples/xmlpatterns/trafficinfo/main.cpp b/examples/xmlpatterns/trafficinfo/main.cpp index 95acca5..78227ce 100644 --- a/examples/xmlpatterns/trafficinfo/main.cpp +++ b/examples/xmlpatterns/trafficinfo/main.cpp @@ -40,7 +40,7 @@ #include "mainwindow.h" -#include <QtGui/QApplication> +#include <QtWidgets/QApplication> int main(int argc, char **argv) { diff --git a/examples/xmlpatterns/trafficinfo/mainwindow.cpp b/examples/xmlpatterns/trafficinfo/mainwindow.cpp index 72a561c..4b14156 100644 --- a/examples/xmlpatterns/trafficinfo/mainwindow.cpp +++ b/examples/xmlpatterns/trafficinfo/mainwindow.cpp @@ -43,8 +43,8 @@ #include <QtCore/QSettings> #include <QtCore/QTimer> -#include <QtGui/QAction> -#include <QtGui/QApplication> +#include <QtWidgets/QAction> +#include <QtWidgets/QApplication> #include <QtGui/QBitmap> #include <QtGui/QLinearGradient> #include <QtGui/QMouseEvent> diff --git a/examples/xmlpatterns/trafficinfo/mainwindow.h b/examples/xmlpatterns/trafficinfo/mainwindow.h index 800131e..d451d33 100644 --- a/examples/xmlpatterns/trafficinfo/mainwindow.h +++ b/examples/xmlpatterns/trafficinfo/mainwindow.h @@ -44,7 +44,7 @@ #include "stationquery.h" #include "timequery.h" -#include <QtGui/QWidget> +#include <QtWidgets/QWidget> class MainWindow : public QWidget { diff --git a/examples/xmlpatterns/trafficinfo/stationdialog.h b/examples/xmlpatterns/trafficinfo/stationdialog.h index 81a73e8..fa738f8 100644 --- a/examples/xmlpatterns/trafficinfo/stationdialog.h +++ b/examples/xmlpatterns/trafficinfo/stationdialog.h @@ -41,7 +41,7 @@ #ifndef STATIONDIALOG_H #define STATIONDIALOG_H -#include <QtGui/QDialog> +#include <QtWidgets/QDialog> #include "stationquery.h" #include "ui_stationdialog.h" diff --git a/examples/xmlpatterns/trafficinfo/trafficinfo.pro b/examples/xmlpatterns/trafficinfo/trafficinfo.pro index 33ddc78..e35ff27 100644 --- a/examples/xmlpatterns/trafficinfo/trafficinfo.pro +++ b/examples/xmlpatterns/trafficinfo/trafficinfo.pro @@ -1,4 +1,4 @@ -QT += xmlpatterns +QT += widgets xmlpatterns HEADERS = mainwindow.h stationdialog.h stationquery.h timequery.h SOURCES = main.cpp mainwindow.cpp stationdialog.cpp stationquery.cpp timequery.cpp FORMS = stationdialog.ui |