Skip to content

Commit

Permalink
Remove some qt4 references
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 6, 2018
1 parent 9553dea commit 7cb20e0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/plugins/coordinate_capture/coordinatecapture.cpp
Expand Up @@ -34,7 +34,7 @@
#include "coordinatecapturegui.h"

//
// Qt4 Related Includes
// Qt Related Includes
//

#include <QAction>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/coordinate_capture/coordinatecapture.h
Expand Up @@ -35,7 +35,7 @@
#ifndef COORDINATECAPTURE_H
#define COORDINATECAPTURE_H

//QT4 includes
//QT includes
#include <QObject>
#include <QPointer>

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/evis/evis.cpp
Expand Up @@ -62,7 +62,7 @@
#include "eviseventidtool.h"

//
// Qt4 Related Includes
// Qt Related Includes
//
#include <QMessageBox>
#include <QToolBar>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrasstools.cpp
Expand Up @@ -220,7 +220,7 @@ void QgsGrassTools::runModule( QString name, bool direct )

if ( !pixmap.isNull() )
{
// Icon size in QT4 does not seem to be variable
// Icon size in QT does not seem to be variable
// -> reset the width to max icon width
if ( mTabWidget->iconSize().width() < pixmap.width() )
{
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/plugin_template/plugin.h
Expand Up @@ -35,7 +35,7 @@
#ifndef [pluginname]_H
#define [pluginname]_H

//QT4 includes
//QT includes
#include <QObject>

//QGIS includes
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/topology/topol.cpp
Expand Up @@ -21,7 +21,7 @@
#include "qgisinterface.h"
#include "qgsguiutils.h"

// Qt4 Related Includes
// Qt Related Includes
#include <QAction>
#include <QToolBar>
#include <QFile>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/topology/topol.h
Expand Up @@ -36,7 +36,7 @@
#ifndef TOPOL_H
#define TOPOL_H

//QT4 includes
//QT includes
#include <QObject>

//QGIS includes
Expand Down
2 changes: 1 addition & 1 deletion src/python/qgspythonutilsimpl.cpp
Expand Up @@ -110,7 +110,7 @@ bool QgsPythonUtilsImpl::checkSystemImports()
return false;
}

// set PyQt4 api versions
// set PyQt api versions
QStringList apiV2classes;
apiV2classes << QStringLiteral( "QDate" ) << QStringLiteral( "QDateTime" ) << QStringLiteral( "QString" ) << QStringLiteral( "QTextStream" ) << QStringLiteral( "QTime" ) << QStringLiteral( "QUrl" ) << QStringLiteral( "QVariant" );
Q_FOREACH ( const QString &clsName, apiV2classes )
Expand Down

0 comments on commit 7cb20e0

Please sign in to comment.