Skip to content

Commit

Permalink
remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Mar 28, 2018
1 parent 5fe1ea8 commit e252f5c
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 6 deletions.
3 changes: 0 additions & 3 deletions src/core/qgserror.h
Expand Up @@ -69,9 +69,6 @@ class CORE_EXPORT QgsErrorMessage
QString mFile;
QString mFunction;
int mLine = 0;

//! Message format
Format mFormat = Text;
};

/**
Expand Down
1 change: 0 additions & 1 deletion src/core/raster/qgsrasterfilewriter.cpp
Expand Up @@ -497,7 +497,6 @@ QgsRasterFileWriter::WriterError QgsRasterFileWriter::writeImageRaster( QgsRaste
void *greenData = qgsMalloc( mMaxTileWidth * mMaxTileHeight );
void *blueData = qgsMalloc( mMaxTileWidth * mMaxTileHeight );
void *alphaData = qgsMalloc( mMaxTileWidth * mMaxTileHeight );
QgsRectangle mapRect;
int iterLeft = 0, iterTop = 0, iterCols = 0, iterRows = 0;
int fileIndex = 0;

Expand Down
2 changes: 1 addition & 1 deletion src/core/symbology/qgssymbollayerutils.cpp
Expand Up @@ -1477,7 +1477,7 @@ bool QgsSymbolLayerUtils::convertPolygonSymbolizerToPointMarker( QDomElement &el
int markIndex = -1;
QColor fillColor, strokeColor;
double strokeWidth = 1.0, size = 0.0, angle = 0.0;
QPointF anchor, offset;
QPointF offset;

// Fill element can contain a GraphicFill element
QDomElement graphicFillElem = fillElem.firstChildElement( QStringLiteral( "GraphicFill" ) );
Expand Down
1 change: 0 additions & 1 deletion src/providers/gpx/qgsgpxprovider.cpp
Expand Up @@ -216,7 +216,6 @@ bool QgsGPXProvider::addFeature( QgsFeature &f, Flags )
bool success = false;
QgsGpsObject *obj = nullptr;
QgsAttributes attrs = f.attributes();
QgsAttributeMap::const_iterator it;

// is it a waypoint?
if ( mFeatureType == WaypointType && geo && wkbType == QgsWkbTypes::Point )
Expand Down

0 comments on commit e252f5c

Please sign in to comment.