Skip to content

Commit 7c5f910

Browse files
committedOct 26, 2017
Fix build with Qt 5.5
1 parent 9c24818 commit 7c5f910

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsfeaturefiltermodel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ void QgsFeatureFilterModel::updateCompleter()
230230
{
231231
beginMoveRows( QModelIndex(), mExtraIdentifierValueIndex, mExtraIdentifierValueIndex, QModelIndex(), 0 );
232232
#if QT_VERSION < QT_VERSION_CHECK(5, 6, 0)
233-
Entry extraEntry = mEntries.takeAt( mExtraIdentifierValueIndex, 1 );
233+
Entry extraEntry = mEntries.takeAt( mExtraIdentifierValueIndex );
234234
mEntries.prepend( extraEntry );
235235
#else
236236
mEntries.move( mExtraIdentifierValueIndex, 0 );

0 commit comments

Comments
 (0)
Please sign in to comment.