Skip to content

Commit

Permalink
use configured QGIS_DATA_SUBDIR on OSX
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@10320 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
kyngchaos committed Mar 20, 2009
1 parent b2f57d4 commit cfc2f81
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/helpviewer/main.cpp
Expand Up @@ -22,6 +22,7 @@
#include "qgshelpviewer.h"
#include "qgsapplication.h"
#include "qgslogger.h"
#include "qgsconfig.h"

int main( int argc, char ** argv )
{
Expand All @@ -39,9 +40,9 @@ int main( int argc, char ** argv )
{
context = argv[1];
}
#ifdef Q_WS_MAC
#ifdef Q_WS_MACX
// If we're on Mac, we have the resource library way above us...
a.setPkgDataPath( QgsApplication::prefixPath() + "/../../../../share/qgis" );
a.setPkgDataPath( QgsApplication::prefixPath() + "/../../../../" + QString( QGIS_DATA_SUBDIR ) );
#endif

QString i18nPath = QgsApplication::i18nPath();
Expand Down

0 comments on commit cfc2f81

Please sign in to comment.