Skip to content

Commit af56944

Browse files
committed
Restore override cursor when about box is shown
1 parent 6024192 commit af56944

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

src/app/qgisapp.cpp

+1-11
Original file line numberDiff line numberDiff line change
@@ -1999,17 +1999,7 @@ void QgisApp::about()
19991999

20002000
abt->setVersion( versionString );
20012001

2002-
QString whatsNew = "<html><body>" ;
2003-
whatsNew += "<h3>" + tr( "Version" ) + " " + QString( QGis::QGIS_VERSION ) + "</h3>";
2004-
whatsNew += "<h2>" + trUtf8( "What's new in Version 1.7.0 'Wroclaw'?" ) + "</h2>";
2005-
whatsNew += "<p>";
2006-
whatsNew += trUtf8( "This release is named after the town of Wroclaw in Poland. The Department of Climatology and Atmosphere Protection, University of Wroclaw kindly hosted our last developer meeting in November 2010. Please note that this is a release in our 'cutting edge' release series. As such it contains new features and extends the programmatic interface over QGIS 1.0.x and QGIS 1.6.0. As with any software, there may be bugs and issues that we were not able to fix in time for the release. We therefore recommend that you test this version before rolling it out en-masse to your users." );
2007-
whatsNew += "</p>";
2008-
whatsNew += "<p>";
2009-
whatsNew += tr( "This release includes over 277 bug fixes and many new features and enhancements. Once again it is impossible to document everything here that has changed so we will just provide a bullet list of key new features here." );
2010-
whatsNew += "</p>";
2011-
2012-
whatsNew += "<h3>" + tr( "Symbology labels and diagrams" ) + "</h3>";
2002+
QApplication::restoreOverrideCursor();
20132003
}
20142004
abt->show();
20152005
abt->raise();

0 commit comments

Comments
 (0)