File tree 1 file changed +0
-8
lines changed
1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -220,8 +220,6 @@ void QgsFeatureFilterModel::updateCompleter()
220
220
221
221
int firstRow = 0 ;
222
222
223
- QgsDebugMsg ( QStringLiteral ( " Entries 1: %1 " ).arg ( mEntries .size () ) );
224
-
225
223
// Move the extra entry to the first position
226
224
if ( mExtraIdentifierValueIndex != -1 )
227
225
{
@@ -239,26 +237,20 @@ void QgsFeatureFilterModel::updateCompleter()
239
237
firstRow = 1 ;
240
238
}
241
239
242
- QgsDebugMsg ( QStringLiteral ( " Entries 2: %1 " ).arg ( mEntries .size () ) );
243
-
244
240
// Remove all entries (except for extra entry if existent)
245
241
beginRemoveRows ( QModelIndex (), firstRow, mEntries .size () - firstRow );
246
242
mEntries .remove ( firstRow, mEntries .size () - firstRow );
247
243
endRemoveRows ();
248
244
249
- QgsDebugMsg ( QStringLiteral ( " Entries 3: %1 " ).arg ( mEntries .size () ) );
250
-
251
245
if ( currentEntryInNewList == -1 )
252
246
{
253
- QgsDebugMsg ( QStringLiteral ( " Current value is NOT in new list" ) );
254
247
beginInsertRows ( QModelIndex (), 1 , entries.size () + 1 );
255
248
mEntries += entries;
256
249
endInsertRows ();
257
250
setExtraIdentifierValueIndex ( 0 );
258
251
}
259
252
else
260
253
{
261
- QgsDebugMsg ( QStringLiteral ( " Current value is in new list" ) );
262
254
if ( currentEntryInNewList != 0 )
263
255
{
264
256
beginInsertRows ( QModelIndex (), 0 , currentEntryInNewList - 1 );
You can’t perform that action at this time.
0 commit comments