Skip to content

Commit

Permalink
fix #1410
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@9665 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Nov 18, 2008
1 parent 11578cb commit e0982fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsprojectionselector.cpp
Expand Up @@ -132,7 +132,7 @@ QString QgsProjectionSelector::ogcWmsCrsFilterAsSqlExpression( QSet<QString> * c
{
QStringList parts = i->split( ":" );

if ( parts.at( 0 ) == "EPSG" )
if ( parts.at( 0 ) == "EPSG" && parts.size()>=2 )
{
epsgParts.push_back( parts.at( 1 ) );
}
Expand Down

0 comments on commit e0982fc

Please sign in to comment.