Skip to content

Commit

Permalink
add PROJ.4 version to about dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennesky committed Sep 16, 2012
1 parent 8898e6b commit 567a4d4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -192,6 +192,7 @@
// GDAL/OGR includes
//
#include <ogr_api.h>
#include <proj_api.h>

//
// Other includes
Expand Down Expand Up @@ -2320,9 +2321,12 @@ void QgisApp::about()
#endif
versionString += "</td>";


versionString += "<td>" + tr( "QWT Version" ) + "</td><td>" + QWT_VERSION_STR + "</td>";

versionString += "</tr><tr>";

versionString += "<td>" + tr( "PROJ.4 Version" ) + "</td><td>" + QString::number( PJ_VERSION ) + "</td>";

#ifdef QGISDEBUG
versionString += "</tr><tr><td colspan=4>" + tr( "This copy of QGIS writes debugging output." ) + "</td>";
#endif
Expand Down

0 comments on commit 567a4d4

Please sign in to comment.