Skip to content
Permalink
Browse files
sync sip with c++ core
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8473 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed May 19, 2008
1 parent bca65eb commit 59d0746
Showing 1 changed file with 6 additions and 6 deletions.
@@ -83,7 +83,7 @@ static void qtgui_UpdatePyArgv(PyObject *argvlist, int argc, char **argv)
virtual ~QgsApplication();

//! Set the theme path to the specified theme.
static void selectTheme(const QString& theThemeName);
static void selectTheme(const QString theThemeName);

//! Returns the path to the authors file.
static const QString authorsFilePath();
@@ -122,22 +122,22 @@ static void qtgui_UpdatePyArgv(PyObject *argvlist, int argc, char **argv)
static const QString svgPath();

//! Returns the path to the application prefix directory.
static const QString& prefixPath();
static const QString prefixPath();

//! Returns the path to the application plugin directory.
static const QString& pluginPath();
static const QString pluginPath();

//! Returns the common root path of all application data directories.
static const QString& pkgDataPath();
static const QString pkgDataPath();

//! Returns the path to the current theme directory.
static const QString& themePath();
static const QString themePath();

//! Alters prefix path - used by 3rd party apps
static void setPrefixPath(const QString& thePrefixPath, bool useDefaultPaths = FALSE);

//! Alters plugin path - used by 3rd party apps
static void setPluginPath(const QString& thePluginPath);
static void setPluginPath(const QString thePluginPath);

//! Alters pkg data path - used by 3rd party apps
static void setPkgDataPath(const QString& thePkgDataPath);

0 comments on commit 59d0746

Please sign in to comment.