From 92eae75ec58ee319e3b5a0dbcdd40f34c030e121 Mon Sep 17 00:00:00 2001 From: jef Date: Mon, 19 May 2008 20:54:18 +0000 Subject: [PATCH] sync sip with c++ core git-svn-id: http://svn.osgeo.org/qgis/trunk@8473 c8812cc2-4d05-0410-92ff-de0c093fc19c --- python/core/qgsapplication.sip | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python/core/qgsapplication.sip b/python/core/qgsapplication.sip index d0854b7e6db..0afc4f97a9e 100644 --- a/python/core/qgsapplication.sip +++ b/python/core/qgsapplication.sip @@ -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);