Navigation Menu

Skip to content

Commit

Permalink
Correctly pass QgsFeedback to metadata method
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jul 1, 2021
1 parent d33c1ae commit 0404dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/providers/qgsproviderregistry.cpp
Expand Up @@ -901,7 +901,7 @@ QList<QgsProviderSublayerDetails> QgsProviderRegistry::querySublayers( const QSt
QList<QgsProviderSublayerDetails> res;
for ( auto it = mProviders.begin(); it != mProviders.end(); ++it )
{
res.append( it->second->querySublayers( uri, flags ) );
res.append( it->second->querySublayers( uri, flags, feedback ) );
if ( feedback && feedback->isCanceled() )
break;
}
Expand Down

0 comments on commit 0404dca

Please sign in to comment.