Skip to content

Commit ee025d9

Browse files
jef-nmach0
authored andcommitted
fix lenny build
1 parent c40e096 commit ee025d9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/app/qgspluginmanager.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,10 @@ void QgsPluginManager::getPluginDescriptions()
250250
QString myPaths = settings.value( "plugins/searchPathsForPlugins", "" ).toString();
251251
if ( !myPaths.isEmpty() )
252252
{
253-
myPathList.append( myPaths.split( "|" ) );
253+
foreach( QString path, myPaths.split( "|" ) )
254+
{
255+
myPathList.append( path );
256+
}
254257
}
255258

256259
for ( int j = 0; j < myPathList.size(); ++j )

0 commit comments

Comments
 (0)