Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Cleanup some about text as suggested by users at the last hackfest
git-svn-id: http://svn.osgeo.org/qgis/trunk@15335 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Mar 5, 2011
1 parent 7e7f041 commit 749b754
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/qgisapp.cpp
Expand Up @@ -2668,21 +2668,21 @@ void QgisApp::about()
.arg( QGis::QGIS_VERSION )
.arg( QGis::QGIS_SVN_VERSION );

versionString += tr( "\nThis copy of QGIS has been built with GDAL/OGR %1." ).arg( GDAL_RELEASE_NAME );
versionString += tr( "\nGDAL/OGR Version: %1." ).arg( GDAL_RELEASE_NAME );

#ifdef HAVE_POSTGRESQL
versionString += tr( "\nThis copy of QGIS has been built with PostgreSQL support (%1)." ).arg( PG_VERSION );
versionString += tr( "\nPostgreSQL Client Version: %1." ).arg( PG_VERSION );
#else
versionString += tr( "\nThis copy of QGIS has been built without PostgreSQL support." );
versionString += tr( "\nNo PostgreSQL support." );
#endif

#ifdef HAVE_SPATIALITE
versionString += tr( "\nThis copy of QGIS has been built with SpatiaLite support (%1)." ).arg( spatialite_version() );
versionString += tr( "\nSpatiaLite Version: %1." ).arg( spatialite_version() );
#else
versionString += tr( "\nThis copy of QGIS has been built without SpatiaLite support." );
versionString += tr( "\nNo SpatiaLite support." );
#endif

versionString += tr( "\nThis copy of QGIS has been built with QWT %1." ).arg( QWT_VERSION_STR );
versionString += tr( "\nQWT Version: %1." ).arg( QWT_VERSION_STR );

#ifdef QGISDEBUG
versionString += tr( "\nThis copy of QGIS writes debugging output." );
Expand Down

0 comments on commit 749b754

Please sign in to comment.