Skip to content

Commit

Permalink
Switch private QList to more efficient QVector container
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 15, 2016
1 parent d255bfb commit 1c1b8aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/qgsexpressionsorter.h
Expand Up @@ -123,7 +123,7 @@ class QgsExpressionSorter

expressionContext->appendScope( scope );

QList<QgsIndexedFeature> indexedFeatures;
QVector<QgsIndexedFeature> indexedFeatures;

QgsIndexedFeature indexedFeature;

Expand Down
Expand Up @@ -308,7 +308,7 @@ void QgsGeometryCheckerResultTab::highlightErrors( bool current )
mCurrentRubberBands.clear();

QList<QTableWidgetItem*> items;
QList<QgsPoint> errorPositions;
QVector<QgsPoint> errorPositions;
QgsRectangle totextent;

if ( current )
Expand Down

0 comments on commit 1c1b8aa

Please sign in to comment.