Skip to content

Commit

Permalink
fix lenny build
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 20, 2012
1 parent e276c49 commit d211b16
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/qgspluginmanager.cpp
Expand Up @@ -250,7 +250,10 @@ void QgsPluginManager::getPluginDescriptions()
QString myPaths = settings.value( "plugins/searchPathsForPlugins", "" ).toString();
if ( !myPaths.isEmpty() )
{
myPathList.append( myPaths.split( "|" ) );
foreach( QString path, myPaths.split( "|" ) )
{
myPathList.append( path );
}
}

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

0 comments on commit d211b16

Please sign in to comment.