remove unused variables

This commit is contained in:
Denis Rouzaud 2018-03-27 22:48:54 +02:00
parent 5fe1ea85bf
commit e252f5cd6f
4 changed files with 1 additions and 6 deletions

View File

@ -69,9 +69,6 @@ class CORE_EXPORT QgsErrorMessage
QString mFile;
QString mFunction;
int mLine = 0;
//! Message format
Format mFormat = Text;
};
/**

View File

@ -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;

View File

@ -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" ) );

View File

@ -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 )