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
12211221%Docstring
12221222Set the notification message that triggers repaine
12231223If refresh on notification is enabled, the notification will triggerRepaint only
1224-
12251224if the notification message is equal to:param message:
12261225
12271226.. 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.
154154 bool isFidCached( const QgsFeatureId fid ) const;
155155%Docstring
156156Check if a certain feature id is cached.
157-
158157\param fid The feature id to look for
159158
160159: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
7272
7373 bool setDisplayExpression( const QString &expression );
7474%Docstring
75-
7675\param expression A QgsExpression compatible string.
7776
7877: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 {
166166 # params
167167 if ( $line =~ m /\\ param / ){
168168 $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;
172176 }
173- $COMMENT_PARAM_LIST = 1;
174- $COMMENT_LAST_LINE_NOTE_WARNING = 0;
175177 }
176178
177179 if ( $line =~ m / ^\s *[\\ @] brief/ ){
You can’t perform that action at this time.
0 commit comments