From 6e499c302d9283d40cb8493ee21b249009a6a0ab Mon Sep 17 00:00:00 2001 From: "Juergen E. Fischer" Date: Wed, 10 Apr 2013 21:56:13 +0200 Subject: [PATCH] fix doxygen warnings --- Doxyfile | 2 -- src/core/qgsvectorlayer.h | 6 +++--- src/core/raster/qgsrasteridentifyresult.h | 5 +++-- src/core/raster/qgsrasterrange.cpp | 2 +- src/gui/attributetable/qgsattributetablefiltermodel.h | 6 +++--- src/gui/attributetable/qgsdualview.h | 2 +- src/gui/attributetable/qgsfeaturelistmodel.h | 6 +++--- src/gui/attributetable/qgsfeaturelistview.h | 2 +- 8 files changed, 15 insertions(+), 16 deletions(-) diff --git a/Doxyfile b/Doxyfile index e5e408fab9c..9411ea34462 100644 --- a/Doxyfile +++ b/Doxyfile @@ -670,8 +670,6 @@ INPUT = doc \ src/core/diagram \ src/core/composer \ src/core/raster \ - src/core/renderer \ - src/core/symbology \ src/core/symbology-ng \ src/core/gps \ src/gui \ diff --git a/src/core/qgsvectorlayer.h b/src/core/qgsvectorlayer.h index f5c53346fbe..6eca020e19b 100644 --- a/src/core/qgsvectorlayer.h +++ b/src/core/qgsvectorlayer.h @@ -258,9 +258,9 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer const QString displayField() const; /** 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 * @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. - * Uses @link {QgsExpression}. + * Uses @link QgsExpression @endlink * * @return The expression which will be used to preview features for this layer * @note added in 2.0 diff --git a/src/core/raster/qgsrasteridentifyresult.h b/src/core/raster/qgsrasteridentifyresult.h index 5e20f04785d..ea83bf7d496 100644 --- a/src/core/raster/qgsrasteridentifyresult.h +++ b/src/core/raster/qgsrasteridentifyresult.h @@ -31,12 +31,13 @@ class CORE_EXPORT QgsRasterIdentifyResult QgsRasterIdentifyResult(); /** \brief Constructor. Creates valid result. - * @param theResults results + * @param theFormat the result format + * @param theResults the results */ QgsRasterIdentifyResult( QgsRasterDataProvider::IdentifyFormat theFormat, QMap theResults ); /** \brief Constructor. Creates invalid result with error. - * @param theResults results + * @param theError the error */ QgsRasterIdentifyResult( QgsError theError ); diff --git a/src/core/raster/qgsrasterrange.cpp b/src/core/raster/qgsrasterrange.cpp index 4a06ce685ed..c0944011016 100644 --- a/src/core/raster/qgsrasterrange.cpp +++ b/src/core/raster/qgsrasterrange.cpp @@ -37,7 +37,7 @@ QgsRasterRange::~QgsRasterRange() bool QgsRasterRange::contains( double value, const QgsRasterRangeList &rangeList ) { - foreach ( QgsRasterRange::QgsRasterRange range, rangeList ) + foreach ( QgsRasterRange range, rangeList ) { if (( value >= range.mMin && value <= range.mMax ) || doubleNear( value, range.mMin ) || diff --git a/src/gui/attributetable/qgsattributetablefiltermodel.h b/src/gui/attributetable/qgsattributetablefiltermodel.h index 26ab81c268a..a37b8c599c1 100644 --- a/src/gui/attributetable/qgsattributetablefiltermodel.h +++ b/src/gui/attributetable/qgsattributetablefiltermodel.h @@ -127,7 +127,7 @@ class GUI_EXPORT QgsAttributeTableFilterModel: public QSortFilterProxyModel /** * 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. */ 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 * 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 - * called. + * selection to account for any cached selection change since @link disableSelectionSync() @endlink + * was called. */ void enableSelectionSync(); diff --git a/src/gui/attributetable/qgsdualview.h b/src/gui/attributetable/qgsdualview.h index 5db303452b1..d41146d2966 100644 --- a/src/gui/attributetable/qgsdualview.h +++ b/src/gui/attributetable/qgsdualview.h @@ -100,7 +100,7 @@ class GUI_EXPORT QgsDualView : public QStackedWidget, private Ui::QgsDualViewBas signals: /** * 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 ); diff --git a/src/gui/attributetable/qgsfeaturelistmodel.h b/src/gui/attributetable/qgsfeaturelistmodel.h index 39ae05acf0a..cf43dacb1e3 100644 --- a/src/gui/attributetable/qgsfeaturelistmodel.h +++ b/src/gui/attributetable/qgsfeaturelistmodel.h @@ -87,7 +87,7 @@ class QgsFeatureListModel : public QAbstractProxyModel /** * 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. */ void disableSelectionSync(); @@ -95,8 +95,8 @@ class QgsFeatureListModel : public QAbstractProxyModel /** * 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 - * selection to account for any cached selection change since @link{disableSelectionSync()} was - * called. + * selection to account for any cached selection change since @link disableSelectionSync() @endlink + * was called. */ void enableSelectionSync(); diff --git a/src/gui/attributetable/qgsfeaturelistview.h b/src/gui/attributetable/qgsfeaturelistview.h index 020327f5c5b..f2a0e3de298 100644 --- a/src/gui/attributetable/qgsfeaturelistview.h +++ b/src/gui/attributetable/qgsfeaturelistview.h @@ -113,7 +113,7 @@ class GUI_EXPORT QgsFeatureListView : public QListView /** * 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 );