Skip to content

Commit 1354d2a

Browse files
author
jef
committed
fix #3011
git-svn-id: http://svn.osgeo.org/qgis/trunk@14257 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 2dacfe4 commit 1354d2a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/app/qgisapp.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -4942,7 +4942,7 @@ void QgisApp::userScale()
49424942
{
49434943
mMapCanvas->zoomScale( rightSide );
49444944
}
4945-
}
4945+
}
49464946
}
49474947

49484948
void QgisApp::userCenter()
@@ -6705,6 +6705,7 @@ void QgisApp::oldProjectVersionWarning( QString oldVersion )
67056705

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

0 commit comments

Comments
 (0)