mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
Ban @ doxygen style annotations
This commit is contained in:
parent
da487e2e34
commit
1d111ce741
@ -124,7 +124,7 @@ void QgsFilterAlgorithmConfigurationWidget::removeSelectedOutputs()
|
||||
rows.append( index.row() );
|
||||
}
|
||||
|
||||
std::sort( rows );
|
||||
std::sort( rows.begin(), rows.end() );
|
||||
|
||||
int prev = -1;
|
||||
for ( int i = rows.count() - 1; i >= 0; i -= 1 )
|
||||
|
@ -38,6 +38,24 @@ HINTS[9]="Use std::round instead"
|
||||
KEYWORDS[10]="\bqSort("
|
||||
HINTS[10]="Use std::sort instead"
|
||||
|
||||
KEYWORDS[11]="@param"
|
||||
HINTS[11]="Use \param instead (works correct with Python docstrings)"
|
||||
|
||||
KEYWORDS[12]="@return"
|
||||
HINTS[12]="Use \returns instead (works correct with Python docstrings)"
|
||||
|
||||
KEYWORDS[13]="@note"
|
||||
HINTS[13]="Use \note instead (works correct with Python docstrings)"
|
||||
|
||||
KEYWORDS[14]="@since"
|
||||
HINTS[14]="Use \since instead (works correct with Python docstrings)"
|
||||
|
||||
KEYWORDS[15]="@warning"
|
||||
HINTS[15]="Use \warning instead (works correct with Python docstrings)"
|
||||
|
||||
KEYWORDS[11]="@deprecated"
|
||||
HINTS[11]="Use \deprecated instead (works correct with Python docstrings)"
|
||||
|
||||
RES=
|
||||
DIR=$(git rev-parse --show-toplevel)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user