Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #3011
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14257 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Sep 19, 2010
1 parent 4aba485 commit 9b66c97
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/qgisapp.cpp
Expand Up @@ -4942,7 +4942,7 @@ void QgisApp::userScale()
{
mMapCanvas->zoomScale( rightSide );
}
}
}
}

void QgisApp::userCenter()
Expand Down Expand Up @@ -6705,6 +6705,7 @@ void QgisApp::oldProjectVersionWarning( QString oldVersion )

if ( settings.value( "/qgis/warnOldProjectVersion", QVariant( true ) ).toBool() )
{
QApplication::setOverrideCursor( Qt::ArrowCursor );
QMessageBox::warning( NULL, tr( "Project file is older" ),
tr( "<p>This project file was saved by an older version of QGIS."
" When saving this project file, QGIS will update it to the latest version, "
Expand All @@ -6725,7 +6726,7 @@ void QgisApp::oldProjectVersionWarning( QString oldVersion )
.arg( tr( "<tt>Settings:Options:General</tt>", "Menu path to setting options" ) )
.arg( tr( "Warn me when opening a project file saved with an older version of QGIS" ) )
);

QApplication::restoreOverrideCursor();
}
return;
}
Expand Down

0 comments on commit 9b66c97

Please sign in to comment.