File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -1221,7 +1221,6 @@ Set whether provider notification is connected to triggerRepaint
1221
1221
%Docstring
1222
1222
Set the notification message that triggers repaine
1223
1223
If refresh on notification is enabled, the notification will triggerRepaint only
1224
-
1225
1224
if the notification message is equal to:param message:
1226
1225
1227
1226
.. versionadded:: 3.0
Original file line number Diff line number Diff line change @@ -154,7 +154,6 @@ Query the layer for the features which intersect the specified rectangle.
154
154
bool isFidCached( const QgsFeatureId fid ) const;
155
155
%Docstring
156
156
Check if a certain feature id is cached.
157
-
158
157
\param fid The feature id to look for
159
158
160
159
:return: True if this id is in the cache
Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ Constructor for QgsFeatureListModel
72
72
73
73
bool setDisplayExpression( const QString &expression );
74
74
%Docstring
75
-
76
75
\param expression A QgsExpression compatible string.
77
76
78
77
:return: true if the expression could be set, false if there was a parse error.
Original file line number Diff line number Diff line change @@ -166,12 +166,14 @@ sub processDoxygenLine {
166
166
# params
167
167
if ( $line =~ m /\\ param / ){
168
168
$line =~ s /\s *\\ param (\w +)\b / :param $1 :/ g ;
169
- if ( $COMMENT_PARAM_LIST == 0 )
170
- {
171
- $line = " \n $line " ;
169
+ if ( $line =~ m / ^:param/ ){
170
+ if ( $COMMENT_PARAM_LIST == 0 )
171
+ {
172
+ $line = " \n $line " ;
173
+ }
174
+ $COMMENT_PARAM_LIST = 1;
175
+ $COMMENT_LAST_LINE_NOTE_WARNING = 0;
172
176
}
173
- $COMMENT_PARAM_LIST = 1;
174
- $COMMENT_LAST_LINE_NOTE_WARNING = 0;
175
177
}
176
178
177
179
if ( $line =~ m / ^\s *[\\ @] brief/ ){
You can’t perform that action at this time.
0 commit comments