diff options
author | Arno <am@disconnect.de> | 2013-03-03 12:05:21 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-03-03 12:05:21 +0100 |
commit | a0fe997bbe54b98a6338aa28d8b008266e423081 (patch) | |
tree | a949fcccf3485359684344a2a64e0b67a3962073 /consistencycheck.cpp | |
parent | 1ddfe1550f718f268c8fd6f333f83898907c9ba9 (diff) | |
download | SheMov-a0fe997bbe54b98a6338aa28d8b008266e423081.tar.gz SheMov-a0fe997bbe54b98a6338aa28d8b008266e423081.tar.bz2 SheMov-a0fe997bbe54b98a6338aa28d8b008266e423081.zip |
Port to Qt5
* Change #include to qt5
* Fix missing QX11Info
* use explicit constructor for QVariant(QColor)
* use beginResetModel() and endResetModel() instead of reset(). The
latter was removed. Hopefully it still works :)
Diffstat (limited to 'consistencycheck.cpp')
-rw-r--r-- | consistencycheck.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/consistencycheck.cpp b/consistencycheck.cpp index 7330cd2..759e2ae 100644 --- a/consistencycheck.cpp +++ b/consistencycheck.cpp @@ -5,11 +5,11 @@ 2 of the License, or (at your option) any later version. */ -#include <QLabel> -#include <QPushButton> -#include <QPlainTextEdit> -#include <QHBoxLayout> -#include <QVBoxLayout> +#include <QtWidgets/QLabel> +#include <QtWidgets/QPushButton> +#include <QtWidgets/QPlainTextEdit> +#include <QtWidgets/QHBoxLayout> +#include <QtWidgets/QVBoxLayout> #include <QSqlQuery> #include <QFileInfo> #include <QSignalMapper> @@ -19,13 +19,13 @@ #include <QTextCharFormat> #include <QBrush> #include <QTextBlock> -#include <QCheckBox> +#include <QtWidgets/QCheckBox> #include <QSettings> #include <QDir> -#include <QFileDialog> -#include <QMessageBox> -#include <QProgressBar> -#include <QGroupBox> +#include <QtWidgets/QFileDialog> +#include <QtWidgets/QMessageBox> +#include <QtWidgets/QProgressBar> +#include <QtWidgets/QGroupBox> #include "consistencycheck.h" #include "helper.h" |