@@ -26,7 +26,7 @@ class QgsCurveTransform
26
26
27
27
QgsCurveTransform( const QList< QgsPoint > &controlPoints );
28
28
%Docstring
29
- Constructs a QgsCurveTransform using a specified list of \a controlPoints.
29
+ Constructs a QgsCurveTransform using a specified list of controlPoints.
30
30
Behavior is undefined if duplicate x values exist in the control points
31
31
list.
32
32
%End
@@ -69,12 +69,12 @@ class QgsCurveTransform
69
69
70
70
double y( double x ) const;
71
71
%Docstring
72
- Returns the mapped y value corresponding to the specified \a x value.
72
+ Returns the mapped y value corresponding to the specified x value.
73
73
%End
74
74
75
75
QVector< double > y( const QVector< double > &x ) const;
76
76
%Docstring
77
- Returns a list of y values corresponding to a list of \a x values.
77
+ Returns a list of y values corresponding to a list of x values.
78
78
Calling this method is faster then calling the double variant multiple
79
79
times.
80
80
%End
@@ -232,7 +232,7 @@ class QgsPropertyTransformer
232
232
void setCurveTransform( QgsCurveTransform *transform /Transfer/ );
233
233
%Docstring
234
234
Sets a curve transform to apply to input values before they are transformed
235
- by the individual transform subclasses. Ownership of \a transform is transferred
235
+ by the individual transform subclasses. Ownership of transform is transferred
236
236
to the property transformer.
237
237
\see curveTransform()
238
238
%End
@@ -247,7 +247,7 @@ class QgsPropertyTransformer
247
247
248
248
virtual QString toExpression( const QString &baseExpression ) const = 0;
249
249
%Docstring
250
- Converts the transformer to a QGIS expression string. The \a baseExpression string consists
250
+ Converts the transformer to a QGIS expression string. The baseExpression string consists
251
251
of a sub-expression reflecting the parent property's state.
252
252
%End
253
253
@@ -270,7 +270,7 @@ class QgsPropertyTransformer
270
270
double transformNumeric( double input ) const;
271
271
%Docstring
272
272
Applies base class numeric transformations. Derived classes should call this
273
- to transform an \a input numeric value before they apply any transform to the result.
273
+ to transform an input numeric value before they apply any transform to the result.
274
274
This applies any curve transforms which may exist on the transformer.
275
275
%End
276
276
};
@@ -329,7 +329,7 @@ class QgsGenericNumericTransformer : QgsPropertyTransformer
329
329
330
330
double value( double input ) const;
331
331
%Docstring
332
- Calculates the size corresponding to a specific \a input value.
332
+ Calculates the size corresponding to a specific input value.
333
333
\returns calculated size using size scale transformer's parameters and type
334
334
%End
335
335
@@ -610,7 +610,7 @@ Copy constructor
610
610
611
611
void setRampName( const QString &name );
612
612
%Docstring
613
- Sets the color ramp's \a name. The ramp name must be set to match
613
+ Sets the color ramp's name. The ramp name must be set to match
614
614
a color ramp available in the style database for conversion to expression
615
615
to work correctly.
616
616
\see rampName()
0 commit comments