Skip to content

Commit e581d46

Browse files
alexbruy3nids
authored andcommitted
regenerate SIP files
1 parent cd159f6 commit e581d46

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

python/core/qgsstatisticalsummary.sip

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class QgsStatisticalSummary
5252
typedef QFlags<QgsStatisticalSummary::Statistic> Statistics;
5353

5454

55-
QgsStatisticalSummary( QgsStatisticalSummary::Statistics stats = All );
55+
QgsStatisticalSummary( QgsStatisticalSummary::Statistics stats = QgsStatisticalSummary::All );
5656
%Docstring
5757
Constructor for QgsStatisticalSummary
5858
\param stats flags for statistics to calculate
@@ -68,7 +68,7 @@ class QgsStatisticalSummary
6868
:rtype: Statistics
6969
%End
7070

71-
void setStatistics( Statistics stats );
71+
void setStatistics( QgsStatisticalSummary::Statistics stats );
7272
%Docstring
7373
Sets flags which specify which statistics will be calculated. Some statistics
7474
are always calculated (e.g., sum, min and max).
@@ -138,7 +138,7 @@ class QgsStatisticalSummary
138138
.. versionadded:: 2.16
139139
%End
140140

141-
double statistic( Statistic stat ) const;
141+
double statistic( QgsStatisticalSummary::Statistic stat ) const;
142142
%Docstring
143143
Returns the value of a specified statistic
144144
\param stat statistic to return
@@ -278,7 +278,7 @@ class QgsStatisticalSummary
278278
:rtype: float
279279
%End
280280

281-
static QString displayName( Statistic statistic );
281+
static QString displayName( QgsStatisticalSummary::Statistic statistic );
282282
%Docstring
283283
Returns the friendly display name for a statistic
284284
\param statistic statistic to return name for

python/core/qgsstringstatisticalsummary.sip

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class QgsStringStatisticalSummary
4444
typedef QFlags<QgsStringStatisticalSummary::Statistic> Statistics;
4545

4646

47-
QgsStringStatisticalSummary( QgsStringStatisticalSummary::Statistics stats = All );
47+
QgsStringStatisticalSummary( QgsStringStatisticalSummary::Statistics stats = QgsStringStatisticalSummary::All );
4848
%Docstring
4949
Constructor for QgsStringStatistics
5050
\param stats flags for statistics to calculate
@@ -58,7 +58,7 @@ class QgsStringStatisticalSummary
5858
:rtype: Statistics
5959
%End
6060

61-
void setStatistics( Statistics stats );
61+
void setStatistics( QgsStringStatisticalSummary::Statistics stats );
6262
%Docstring
6363
Sets flags which specify which statistics will be calculated. Some statistics
6464
are always calculated (e.g., count).
@@ -134,7 +134,7 @@ class QgsStringStatisticalSummary
134134
.. seealso:: addString()
135135
%End
136136

137-
QVariant statistic( Statistic stat ) const;
137+
QVariant statistic( QgsStringStatisticalSummary::Statistic stat ) const;
138138
%Docstring
139139
Returns the value of a specified statistic
140140
\param stat statistic to return
@@ -199,7 +199,7 @@ class QgsStringStatisticalSummary
199199
:rtype: float
200200
%End
201201

202-
static QString displayName( Statistic statistic );
202+
static QString displayName( QgsStringStatisticalSummary::Statistic statistic );
203203
%Docstring
204204
Returns the friendly display name for a statistic
205205
\param statistic statistic to return name for

0 commit comments

Comments
 (0)