File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ void QgsFilterAlgorithmConfigurationWidget::removeSelectedOutputs()
124
124
rows.append ( index.row () );
125
125
}
126
126
127
- std::sort ( rows );
127
+ std::sort ( rows. begin (), rows. end () );
128
128
129
129
int prev = -1 ;
130
130
for ( int i = rows.count () - 1 ; i >= 0 ; i -= 1 )
Original file line number Diff line number Diff line change @@ -38,6 +38,24 @@ HINTS[9]="Use std::round instead"
38
38
KEYWORDS[10]=" \bqSort("
39
39
HINTS[10]=" Use std::sort instead"
40
40
41
+ KEYWORDS[11]=" @param"
42
+ HINTS[11]=" Use \param instead (works correct with Python docstrings)"
43
+
44
+ KEYWORDS[12]=" @return"
45
+ HINTS[12]=" Use \returns instead (works correct with Python docstrings)"
46
+
47
+ KEYWORDS[13]=" @note"
48
+ HINTS[13]=" Use \note instead (works correct with Python docstrings)"
49
+
50
+ KEYWORDS[14]=" @since"
51
+ HINTS[14]=" Use \since instead (works correct with Python docstrings)"
52
+
53
+ KEYWORDS[15]=" @warning"
54
+ HINTS[15]=" Use \warning instead (works correct with Python docstrings)"
55
+
56
+ KEYWORDS[11]=" @deprecated"
57
+ HINTS[11]=" Use \deprecated instead (works correct with Python docstrings)"
58
+
41
59
RES=
42
60
DIR=$( git rev-parse --show-toplevel)
43
61
You can’t perform that action at this time.
0 commit comments