Skip to content

Commit ad3fe26

Browse files
committed
[doxygen] remove remaining 'note Added in XXX' in favor of '\since ...'
1 parent 8e60510 commit ad3fe26

7 files changed

+12
-12
lines changed

src/app/composer/qgscomposerimageexportoptionsdialog.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
/** A dialog for customising the properties of an exported image file.
26-
* /note added in QGIS 2.12
26+
* \since QGIS 2.12
2727
*/
2828
class QgsComposerImageExportOptionsDialog: public QDialog, private Ui::QgsComposerImageExportOptionsDialog
2929
{

src/app/composer/qgscomposertablebackgroundcolorsdialog.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class QCheckBox;
2626
class QgsColorButton;
2727

2828
/** A dialog for customisation of the cell background colors for a QgsComposerTableV2
29-
* /note added in QGIS 2.12
29+
* \since QGIS 2.12
3030
*/
3131
class QgsComposerTableBackgroundColorsDialog: public QDialog, private Ui::QgsComposerTableBackgroundDialog
3232
{

src/core/geometry/qgsgeometryutils.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ class CORE_EXPORT QgsGeometryUtils
175175
static double circleTangentDirection( const QgsPointV2 &tangentPoint, const QgsPointV2 &cp1, const QgsPointV2 &cp2, const QgsPointV2 &cp3 );
176176

177177
/** Convert circular arc defined by p1, p2, p3 (p1/p3 being start resp. end point, p2 lies on the arc) into a sequence of points.
178-
* @note added in 3.0
178+
* \since 3.0
179179
*/
180180
static void segmentizeArc( const QgsPointV2 &p1, const QgsPointV2 &p2, const QgsPointV2 &p3,
181181
QgsPointSequence SIP_PYTYPE( QList<QgsPointV2> ) &points SIP_OUT, double tolerance = M_PI_2 / 90,
@@ -184,12 +184,12 @@ class CORE_EXPORT QgsGeometryUtils
184184

185185
/** For line defined by points pt1 and pt3, find out on which side of the line is point pt3.
186186
* Returns -1 if pt3 on the left side, 1 if pt3 is on the right side or 0 if pt3 lies on the line.
187-
* @note added in 3.0
187+
* \since 3.0
188188
*/
189189
static int segmentSide( const QgsPointV2 &pt1, const QgsPointV2 &pt3, const QgsPointV2 &pt2 );
190190

191191
/** Interpolate a value at given angle on circular arc given values (zm1, zm2, zm3) at three different angles (a1, a2, a3).
192-
* @note added in 3.0
192+
* \since 3.0
193193
*/
194194
static double interpolateArcValue( double angle, double a1, double a2, double a3, double zm1, double zm2, double zm3 );
195195

src/core/qgsexpression.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ class CORE_EXPORT QgsExpression
659659
* This can be used as callback for custom implementations of subclasses. It is the default for implementation
660660
* for StaticFunction::isStatic.
661661
*
662-
* \note Added in QGIS 3.0
662+
* \since QGIS 3.0
663663
*/
664664
static bool allParamsStatic( const QgsExpression::NodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context );
665665

src/core/qgsexpressioncontext.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ class CORE_EXPORT QgsExpressionContextScope
230230
* Tests whether the variable with the specified \a name is static and can
231231
* be cached.
232232
*
233-
* \note Added in QGIS 3.0
233+
* \since QGIS 3.0
234234
*/
235235
bool isStatic( const QString &name ) const;
236236

src/core/qgsstacktrace.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* displaying additional debug information when things go wrong.
3030
*
3131
* \note Not available in python
32-
* \note Added in QGIS 3.0
32+
* \since QGIS 3.0
3333
*/
3434
class CORE_EXPORT QgsStackTrace
3535
{
@@ -64,7 +64,7 @@ class CORE_EXPORT QgsStackTrace
6464
/**
6565
* Return a demangled stack backtrace of the caller function.
6666
*
67-
* \note Added in QGIS 3.0
67+
* \since QGIS 3.0
6868
*/
6969
static QVector<QgsStackTrace::StackLine> trace( struct _EXCEPTION_POINTERS *ExceptionInfo );
7070

@@ -80,7 +80,7 @@ class CORE_EXPORT QgsStackTrace
8080
/**
8181
* Return a demangled stack backtrace of the caller function.
8282
*
83-
* \note Added in QGIS 3.0
83+
* \since QGIS 3.0
8484
*/
8585
static QVector<QgsStackTrace::StackLine> trace( unsigned int maxFrames = 63 );
8686
#endif

src/gui/qgsrubberband.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ class GUI_EXPORT QgsRubberBand: public QgsMapCanvasItem
7373

7474
/**
7575
* A diamond is used to highlight points (◇)
76-
* @note added in QGIS 3.0
76+
* \since QGIS 3.0
7777
*/
7878
ICON_DIAMOND,
7979

8080
/**
8181
* A diamond is used to highlight points (◆)
82-
* @note added in QGIS 3.0
82+
* \since QGIS 3.0
8383
*/
8484
ICON_FULL_DIAMOND,
8585
};

0 commit comments

Comments
 (0)