Skip to content

Commit 567a4d4

Browse files
committed
add PROJ.4 version to about dialog
1 parent 8898e6b commit 567a4d4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/app/qgisapp.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@
192192
// GDAL/OGR includes
193193
//
194194
#include <ogr_api.h>
195+
#include <proj_api.h>
195196

196197
//
197198
// Other includes
@@ -2320,9 +2321,12 @@ void QgisApp::about()
23202321
#endif
23212322
versionString += "</td>";
23222323

2323-
23242324
versionString += "<td>" + tr( "QWT Version" ) + "</td><td>" + QWT_VERSION_STR + "</td>";
23252325

2326+
versionString += "</tr><tr>";
2327+
2328+
versionString += "<td>" + tr( "PROJ.4 Version" ) + "</td><td>" + QString::number( PJ_VERSION ) + "</td>";
2329+
23262330
#ifdef QGISDEBUG
23272331
versionString += "</tr><tr><td colspan=4>" + tr( "This copy of QGIS writes debugging output." ) + "</td>";
23282332
#endif

0 commit comments

Comments
 (0)