Skip to content

Commit 60bdd8f

Browse files
author
mhugent
committedNov 17, 2008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgsserversourceselect.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ void QgsServerSourceSelect::on_lstLayers_itemSelectionChanged()
484484
{
485485
QStringList parts = i->split( ":" );
486486

487-
if ( parts.at( 0 ) == "EPSG" )
487+
if ( parts.at(0).compare("EPSG", Qt::CaseInsensitive) == 0 )
488488
{
489489
long epsg = atol( parts.at( 1 ).toUtf8() );
490490
if ( epsg == m_Epsg )

0 commit comments

Comments
 (0)
Please sign in to comment.