Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix warnings
  • Loading branch information
jef-n committed Nov 19, 2014
1 parent b8ff575 commit d089808
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 17 deletions.
5 changes: 0 additions & 5 deletions src/app/qgisapp.cpp
Expand Up @@ -308,11 +308,6 @@ extern "C"

class QTreeWidgetItem;


// IDs for locating particular menu items
const int BEFORE_RECENT_PATHS = 123;
const int AFTER_RECENT_PATHS = 321;

/** set the application title bar text
If the current project title is null
Expand Down
13 changes: 5 additions & 8 deletions src/app/qgslabeldialog.cpp
Expand Up @@ -28,15 +28,12 @@
#include <QDoubleValidator>


const int PIXMAP_WIDTH = 200;
const int PIXMAP_HEIGHT = 20;

QgsLabelDialog::QgsLabelDialog( QgsLabel *label, QWidget *parent )
: QWidget( parent ),
mLabel( label ),
mFontColor( Qt::black ),
mBufferColor( Qt::black ),
mFont( "Helvetica" )
: QWidget( parent )
, mLabel( label )
, mFontColor( Qt::black )
, mBufferColor( Qt::black )
, mFont( "Helvetica" )
{
setupUi( this );
QgsDebugMsg( "entering." );
Expand Down
1 change: 0 additions & 1 deletion src/plugins/topology/topol.cpp
Expand Up @@ -30,7 +30,6 @@
#include "topol.h"
#include "checkDock.h"

static const char * const sIdent = "$Id: plugin.cpp 8053 2008-01-26 13:59:53Z timlinux $";
static const QString sName = QObject::tr( "Topology Checker" );
static const QString sDescription = QObject::tr( "A Plugin for finding topological errors in vector layers" );
static const QString sCategory = QObject::tr( "Vector" );
Expand Down
3 changes: 0 additions & 3 deletions src/providers/mssql/qgsmssqlfeatureiterator.h
Expand Up @@ -93,9 +93,6 @@ class QgsMssqlFeatureIterator : public QgsAbstractFeatureIteratorFromSource<QgsM
// The current sql query
QSqlQuery* mQuery;

// Use query on provider (no new connection added)
bool mUseProviderQuery;

// The current sql statement
QString mStatement;

Expand Down

0 comments on commit d089808

Please sign in to comment.