@@ -104,7 +104,7 @@ static void qtgui_UpdatePyArgv(PyObject *argvlist, int argc, char **argv)
104
104
* based on the supplied theme name exists. If it does not the theme name will
105
105
* be reverted to 'default'.
106
106
*/
107
- static void setThemeName( const QString &theThemeName );
107
+ static void setThemeName( const QString &themeName );
108
108
109
109
/** Set the active theme to the specified theme.
110
110
* The theme name should be a single word e.g. 'default','classic'.
@@ -218,11 +218,11 @@ static void qtgui_UpdatePyArgv(PyObject *argvlist, int argc, char **argv)
218
218
219
219
//! Helper to get a theme icon. It will fall back to the
220
220
//! default theme if the active theme does not have the required icon.
221
- static QIcon getThemeIcon( const QString &theName );
221
+ static QIcon getThemeIcon( const QString &name );
222
222
223
223
//! Helper to get a theme icon as a pixmap. It will fall back to the
224
224
//! default theme if the active theme does not have the required icon.
225
- static QPixmap getThemePixmap( const QString &theName );
225
+ static QPixmap getThemePixmap( const QString &name );
226
226
227
227
//! Returns the path to user's style.
228
228
static QString userStylePath();
@@ -275,19 +275,19 @@ static void qtgui_UpdatePyArgv(PyObject *argvlist, int argc, char **argv)
275
275
static QString libexecPath();
276
276
277
277
//! Alters prefix path - used by 3rd party apps
278
- static void setPrefixPath( const QString &thePrefixPath , bool useDefaultPaths = false );
278
+ static void setPrefixPath( const QString &prefixPath , bool useDefaultPaths = false );
279
279
280
280
//! Alters plugin path - used by 3rd party apps
281
- static void setPluginPath( const QString &thePluginPath );
281
+ static void setPluginPath( const QString &pluginPath );
282
282
283
283
//! Alters pkg data path - used by 3rd party apps
284
- static void setPkgDataPath( const QString &thePkgDataPath );
284
+ static void setPkgDataPath( const QString &pkgDataPath );
285
285
286
286
//! Alters default svg paths - used by 3rd party apps.
287
287
static void setDefaultSvgPaths( const QStringList& pathList );
288
288
289
289
//! Alters authentication data base directory path - used by 3rd party apps
290
- static void setAuthDatabaseDirPath( const QString& theAuthDbDirPath );
290
+ static void setAuthDatabaseDirPath( const QString& authDbDirPath );
291
291
292
292
//! loads providers
293
293
static void initQgis();
@@ -352,13 +352,13 @@ static void qtgui_UpdatePyArgv(PyObject *argvlist, int argc, char **argv)
352
352
* and then calls GDALDriverManager::AutoSkipDrivers() to unregister it. The
353
353
* driver name should be the short format of the Gdal driver name e.g. GTIFF.
354
354
*/
355
- static void skipGdalDriver( const QString& theDriver );
355
+ static void skipGdalDriver( const QString& driver );
356
356
357
357
/** Sets the GDAL_SKIP environment variable to exclude the specified driver
358
358
* and then calls GDALDriverManager::AutoSkipDrivers() to unregister it. The
359
359
* driver name should be the short format of the Gdal driver name e.g. GTIFF.
360
360
*/
361
- static void restoreGdalDriver( const QString& theDriver );
361
+ static void restoreGdalDriver( const QString& driver );
362
362
363
363
/** Returns the list of gdal drivers that should be skipped (based on
364
364
* GDAL_SKIP environment variable)
0 commit comments