We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 41eccd1 commit e43cb79Copy full SHA for e43cb79
src/gui/qgssourceselectproviderregistry.cpp
@@ -91,8 +91,8 @@ void QgsSourceSelectProviderRegistry::init()
91
{
92
return;
93
}
94
- QStringList providersList = QgsProviderRegistry::instance()->providerList();
95
- Q_FOREACH ( const QString &key, providersList )
+ const QStringList providersList = QgsProviderRegistry::instance()->providerList();
+ for ( const QString &key : providersList )
96
97
std::unique_ptr< QLibrary > library( QgsProviderRegistry::instance()->createProviderLibrary( key ) );
98
if ( !library )
how fast ;)
1 commit comments
luipir commentedon Sep 5, 2017
how fast ;)