Revise debug output to match r8720.

git-svn-id: http://svn.osgeo.org/qgis/trunk@9295 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
telwertowski 2008-09-11 06:04:07 +00:00
parent ab46ef9524
commit 48bee0b744
2 changed files with 1 additions and 5 deletions

View File

@ -375,10 +375,9 @@ void QgsOptions::on_pbnSelectProjection_clicked()
if ( mySelector->exec() )
{
QgsDebugMsg( "------ Global Default Projection Selection Set ----------" );
//! @todo changes this control name in gui to txtGlobalProjString
txtGlobalWKT->setText( mySelector->selectedProj4String() );
QgsDebugMsg( QString( "------ Global Default Projection now set to ----------\n%1" ).arg( mGlobalCRSID ) );
QgsDebugMsg( QString( "------ Global Default Projection Selection set to ----------\n%1" ).arg( txtGlobalWKT->toPlainText() ) );
}
else
{

View File

@ -93,9 +93,6 @@ class QgsOptions : public QDialog, private Ui::QgsOptionsBase
//
QStringList i18nList();
//!Global default projection used for new layers added that have no projection
long mGlobalCRSID;
//!Default proj4 string used for new layers added that have no projection
QString mGlobalProj4String;