Skip to content

Commit

Permalink
fix #6223
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Aug 20, 2012
1 parent b9c18e6 commit 953c4e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/qgsnewspatialitelayerdialog.cpp
Expand Up @@ -76,7 +76,8 @@ QgsNewSpatialiteLayerDialog::QgsNewSpatialiteLayerDialog( QWidget *parent, Qt::W
QgsCoordinateReferenceSystem srs;
srs.createFromOgcWmsCrs( GEO_EPSG_CRS_AUTHID );
srs.validate();
mCrsId = srs.srsid();
bool ok;
mCrsId = srs.authid().split( ':' ).at( 1 ).toInt( &ok );
leSRID->setText( srs.authid() + " - " + srs.description() );

pbnFindSRID->setEnabled( mDatabaseComboBox->count() );
Expand Down

0 comments on commit 953c4e0

Please sign in to comment.