Show more user friendly CRS in vector props dialog

git-svn-id: http://svn.osgeo.org/qgis/trunk@14674 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2010-11-14 23:57:03 +00:00
parent 7efc989252
commit 3b8e430aed

View File

@ -124,7 +124,7 @@ QgsVectorLayerProperties::QgsVectorLayerProperties(
updateButtons();
leSpatialRefSys->setText( layer->srs().toProj4() );
leSpatialRefSys->setText( "EPSG:" + QString::number( layer->crs().epsg() ) + " - " + layer->srs().description() );
leSpatialRefSys->setCursorPosition( 0 );
leEditForm->setText( layer->editForm() );
@ -980,7 +980,7 @@ void QgsVectorLayerProperties::on_pbnChangeSpatialRefSys_clicked()
}
delete mySelector;
leSpatialRefSys->setText( layer->srs().toProj4() );
leSpatialRefSys->setText( "EPSG:" + QString::number( layer->crs().epsg() ) + " - " + layer->srs().description() );
leSpatialRefSys->setCursorPosition( 0 );
}