Skip to content

Commit

Permalink
Added QGIS_PREFIX_PATH to app settings display
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux committed Sep 26, 2012
1 parent b86453a commit bd07833
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/core/qgsapplication.cpp
Expand Up @@ -592,15 +592,18 @@ void QgsApplication::exitQgis()

QString QgsApplication::showSettings()
{
QString myEnvironmentVar( getenv( "QGIS_PREFIX_PATH" ) );
QString myState = tr( "Application state:\n"
"Prefix:\t\t%1\n"
"QGIS_PREFIX_PATH env var:\t\t%1\n"
"Prefix:\t\t%2\n"
"Plugin Path:\t\t%2\n"
"Package Data Path:\t%3\n"
"Active Theme Name:\t%4\n"
"Active Theme Path:\t%5\n"
"Default Theme Path:\t%6\n"
"SVG Search Paths:\t%7\n"
"User DB Path:\t%8\n" )
.arg( myEnvironmentVar )
.arg( prefixPath() )
.arg( pluginPath() )
.arg( pkgDataPath() )
Expand Down

0 comments on commit bd07833

Please sign in to comment.