Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Sep 25, 2017
1 parent 270f167 commit b0b1714
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/core/symbology/qgsgraduatedsymbolrenderer.sip
Expand Up @@ -75,7 +75,7 @@ class QgsRendererRange
void swap( QgsRendererRange &other );
};

typedef QVector<QgsRendererRange> QgsRangeList;
typedef QList<QgsRendererRange> QgsRangeList;


class QgsRendererRangeLabelFormat
Expand Down
2 changes: 1 addition & 1 deletion src/core/auth/qgsauthmethodregistry.cpp
Expand Up @@ -78,7 +78,7 @@ QgsAuthMethodRegistry::QgsAuthMethodRegistry( const QString &pluginPath )
}

// auth method file regex pattern, only files matching the pattern are loaded if the variable is defined
QString filePattern = getenv( QStringLiteral( "QGIS_AUTHMETHOD_FILE" ) );
QString filePattern = getenv( "QGIS_AUTHMETHOD_FILE" );
QRegExp fileRegexp;
if ( !filePattern.isEmpty() )
{
Expand Down
2 changes: 1 addition & 1 deletion src/core/symbology/qgsgraduatedsymbolrenderer.cpp
Expand Up @@ -1390,7 +1390,7 @@ void QgsGraduatedSymbolRenderer::addClass( double lower, double upper )

void QgsGraduatedSymbolRenderer::addBreak( double breakValue, bool updateSymbols )
{
QMutableVectorIterator< QgsRendererRange > it( mRanges );
QMutableListIterator< QgsRendererRange > it( mRanges );
while ( it.hasNext() )
{
QgsRendererRange range = it.next();
Expand Down
2 changes: 1 addition & 1 deletion src/core/symbology/qgsgraduatedsymbolrenderer.h
Expand Up @@ -78,7 +78,7 @@ class CORE_EXPORT QgsRendererRange
void swap( QgsRendererRange &other );
};

typedef QVector<QgsRendererRange> QgsRangeList;
typedef QList<QgsRendererRange> QgsRangeList;


/** \ingroup core
Expand Down

0 comments on commit b0b1714

Please sign in to comment.