We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8898e6b commit 567a4d4Copy full SHA for 567a4d4
src/app/qgisapp.cpp
@@ -192,6 +192,7 @@
192
// GDAL/OGR includes
193
//
194
#include <ogr_api.h>
195
+#include <proj_api.h>
196
197
198
// Other includes
@@ -2320,9 +2321,12 @@ void QgisApp::about()
2320
2321
#endif
2322
versionString += "</td>";
2323
-
2324
versionString += "<td>" + tr( "QWT Version" ) + "</td><td>" + QWT_VERSION_STR + "</td>";
2325
2326
+ versionString += "</tr><tr>";
2327
+
2328
+ versionString += "<td>" + tr( "PROJ.4 Version" ) + "</td><td>" + QString::number( PJ_VERSION ) + "</td>";
2329
2330
#ifdef QGISDEBUG
2331
versionString += "</tr><tr><td colspan=4>" + tr( "This copy of QGIS writes debugging output." ) + "</td>";
2332
0 commit comments