Skip to content

Commit 0355611

Browse files
committed
Added \since QGIS 3.8
1 parent 77b0e23 commit 0355611

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

python/server/auto_generated/qgsserversettings.sip.in

+4
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,17 @@ Returns the cache directory.
124124
Overrides system locale
125125

126126
:return: the optional override for system locale.
127+
128+
.. versionadded:: 3.8
127129
%End
128130

129131
bool showGroupSeparator() const;
130132
%Docstring
131133
Show group (thousand) separator
132134

133135
:return: if group separator must be shown, default to ``False``.
136+
137+
.. versionadded:: 3.8
134138
%End
135139

136140
};

src/server/qgsserversettings.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ class SERVER_EXPORT QgsServerSettingsEnv : public QObject
6161
MAX_CACHE_LAYERS,
6262
QGIS_SERVER_CACHE_DIRECTORY,
6363
QGIS_SERVER_CACHE_SIZE,
64-
QGIS_SERVER_SHOW_GROUP_SEPARATOR, //! Show group (thousands) separator when formatting numeric values, defaults to FALSE
65-
QGIS_SERVER_OVERRIDE_SYSTEM_LOCALE, //! Override system locale
64+
QGIS_SERVER_SHOW_GROUP_SEPARATOR, //! Show group (thousands) separator when formatting numeric values, defaults to FALSE (since QGIS 3.8)
65+
QGIS_SERVER_OVERRIDE_SYSTEM_LOCALE, //! Override system locale (since QGIS 3.8)
6666
};
6767
Q_ENUM( EnvVar )
6868
};
@@ -173,12 +173,14 @@ class SERVER_EXPORT QgsServerSettings
173173
/**
174174
* Overrides system locale
175175
* \returns the optional override for system locale.
176+
* \since QGIS 3.8
176177
*/
177178
QString overrideSystemLocale() const;
178179

179180
/**
180181
* Show group (thousand) separator
181182
* \returns if group separator must be shown, default to FALSE.
183+
* \since QGIS 3.8
182184
*/
183185
bool showGroupSeparator() const;
184186

0 commit comments

Comments
 (0)