fix doxygen warnings

This commit is contained in:
Juergen E. Fischer 2013-04-10 21:56:13 +02:00
parent 054f64ca81
commit 6e499c302d
8 changed files with 15 additions and 16 deletions

View File

@ -670,8 +670,6 @@ INPUT = doc \
src/core/diagram \ src/core/diagram \
src/core/composer \ src/core/composer \
src/core/raster \ src/core/raster \
src/core/renderer \
src/core/symbology \
src/core/symbology-ng \ src/core/symbology-ng \
src/core/gps \ src/core/gps \
src/gui \ src/gui \

View File

@ -258,9 +258,9 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer
const QString displayField() const; const QString displayField() const;
/** Set the preview expression, used to create a human readable preview string. /** Set the preview expression, used to create a human readable preview string.
* Used e.g. in the attribute table feature list. Uses @link {QgsExpression}. * Used e.g. in the attribute table feature list. Uses @link QgsExpression @endlink
* *
* @param previewExpression The expression which will be used to preview features * @param displayExpression The expression which will be used to preview features
* for this layer * for this layer
* @note added in 2.0 * @note added in 2.0
*/ */
@ -268,7 +268,7 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer
/** /**
* Get the preview expression, used to create a human readable preview string. * Get the preview expression, used to create a human readable preview string.
* Uses @link {QgsExpression}. * Uses @link QgsExpression @endlink
* *
* @return The expression which will be used to preview features for this layer * @return The expression which will be used to preview features for this layer
* @note added in 2.0 * @note added in 2.0

View File

@ -31,12 +31,13 @@ class CORE_EXPORT QgsRasterIdentifyResult
QgsRasterIdentifyResult(); QgsRasterIdentifyResult();
/** \brief Constructor. Creates valid result. /** \brief Constructor. Creates valid result.
* @param theResults results * @param theFormat the result format
* @param theResults the results
*/ */
QgsRasterIdentifyResult( QgsRasterDataProvider::IdentifyFormat theFormat, QMap<int, QVariant> theResults ); QgsRasterIdentifyResult( QgsRasterDataProvider::IdentifyFormat theFormat, QMap<int, QVariant> theResults );
/** \brief Constructor. Creates invalid result with error. /** \brief Constructor. Creates invalid result with error.
* @param theResults results * @param theError the error
*/ */
QgsRasterIdentifyResult( QgsError theError ); QgsRasterIdentifyResult( QgsError theError );

View File

@ -37,7 +37,7 @@ QgsRasterRange::~QgsRasterRange()
bool QgsRasterRange::contains( double value, const QgsRasterRangeList &rangeList ) bool QgsRasterRange::contains( double value, const QgsRasterRangeList &rangeList )
{ {
foreach ( QgsRasterRange::QgsRasterRange range, rangeList ) foreach ( QgsRasterRange range, rangeList )
{ {
if (( value >= range.mMin && value <= range.mMax ) || if (( value >= range.mMin && value <= range.mMax ) ||
doubleNear( value, range.mMin ) || doubleNear( value, range.mMin ) ||

View File

@ -127,7 +127,7 @@ class GUI_EXPORT QgsAttributeTableFilterModel: public QSortFilterProxyModel
/** /**
* Disables selection synchronisation with the map canvas. Changes to the selection in the master * Disables selection synchronisation with the map canvas. Changes to the selection in the master
* model are propagated to the layer, but no redraw is requested until @link{enableSelectionSync()} * model are propagated to the layer, but no redraw is requested until @link enableSelectionSync() @endlink
* is called. * is called.
*/ */
void disableSelectionSync(); void disableSelectionSync();
@ -135,8 +135,8 @@ class GUI_EXPORT QgsAttributeTableFilterModel: public QSortFilterProxyModel
/** /**
* Enables selection synchronisation with the map canvas. Changes to the selection in the master * Enables selection synchronisation with the map canvas. Changes to the selection in the master
* are propagated and upon every change, a redraw will be requested. This method will update the * are propagated and upon every change, a redraw will be requested. This method will update the
* selection to account for any cached selection change since @link{disableSelectionSync()} was * selection to account for any cached selection change since @link disableSelectionSync() @endlink
* called. * was called.
*/ */
void enableSelectionSync(); void enableSelectionSync();

View File

@ -100,7 +100,7 @@ class GUI_EXPORT QgsDualView : public QStackedWidget, private Ui::QgsDualViewBas
signals: signals:
/** /**
* Is emitted, whenever the display expression is successfully changed * Is emitted, whenever the display expression is successfully changed
* @param The expression that was applied * @param expression The expression that was applied
*/ */
void displayExpressionChanged( const QString expression ); void displayExpressionChanged( const QString expression );

View File

@ -87,7 +87,7 @@ class QgsFeatureListModel : public QAbstractProxyModel
/** /**
* Disables selection synchronisation with the map canvas. Changes to the selection in the master * Disables selection synchronisation with the map canvas. Changes to the selection in the master
* model are propagated to the layer, but no redraw is requested until @link{enableSelectionSync()} * model are propagated to the layer, but no redraw is requested until @link enableSelectionSync() @endlink
* is called. * is called.
*/ */
void disableSelectionSync(); void disableSelectionSync();
@ -95,8 +95,8 @@ class QgsFeatureListModel : public QAbstractProxyModel
/** /**
* Enables selection synchronisation with the map canvas. Changes to the selection in the master * Enables selection synchronisation with the map canvas. Changes to the selection in the master
* are propagated and upon every change, a redraw will be requested. This method will update the * are propagated and upon every change, a redraw will be requested. This method will update the
* selection to account for any cached selection change since @link{disableSelectionSync()} was * selection to account for any cached selection change since @link disableSelectionSync() @endlink
* called. * was called.
*/ */
void enableSelectionSync(); void enableSelectionSync();

View File

@ -113,7 +113,7 @@ class GUI_EXPORT QgsFeatureListView : public QListView
/** /**
* Is emitted, whenever the display expression is successfully changed * Is emitted, whenever the display expression is successfully changed
* @param The expression that was applied * @param expression The expression that was applied
*/ */
void displayExpressionChanged( const QString expression ); void displayExpressionChanged( const QString expression );