Skip to content

Commit

Permalink
fix d679581
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Sep 17, 2018
1 parent c962ad2 commit 144dd15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/core/auto_generated/qgsapplication.sip.in
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ for resources in their own datastores e.g. a Qt4 resource bundle.
be reverted to 'default'.
%End

static QString resolvePkgPath( );
static QString resolvePkgPath();
%Docstring
Calculate the application pkg path

Expand Down Expand Up @@ -810,7 +810,7 @@ The maximum number of concurrent connections per connections pool.
.. versionadded:: 3.4
%End

static void setTranslation( QString translation );
static void setTranslation( const QString &translation );
%Docstring
Set translation

Expand Down
4 changes: 2 additions & 2 deletions src/core/qgsapplication.h
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class CORE_EXPORT QgsApplication : public QApplication
* Calculate the application pkg path
* \return the resolved pkg path
*/
static QString resolvePkgPath( );
static QString resolvePkgPath();

/**
* Set the active theme to the specified theme.
Expand Down Expand Up @@ -748,7 +748,7 @@ class CORE_EXPORT QgsApplication : public QApplication
*
* \since QGIS 3.4
*/
static void setTranslation( QString translation ) { sTranslation = translation; }
static void setTranslation( const QString &translation ) { sTranslation = translation; }

/**
* Emits the signal to collect all the strings of .qgs to be included in ts file
Expand Down

0 comments on commit 144dd15

Please sign in to comment.