Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix doxygen warnings
  • Loading branch information
jef-n committed Apr 10, 2013
1 parent 054f64c commit 6e499c3
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 16 deletions.
2 changes: 0 additions & 2 deletions Doxyfile
Expand Up @@ -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 \
Expand Down
6 changes: 3 additions & 3 deletions src/core/qgsvectorlayer.h
Expand Up @@ -258,17 +258,17 @@ 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
*/
void setDisplayExpression( const QString displayExpression );

/**
* 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
Expand Down
5 changes: 3 additions & 2 deletions src/core/raster/qgsrasteridentifyresult.h
Expand Up @@ -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<int, QVariant> theResults );

/** \brief Constructor. Creates invalid result with error.
* @param theResults results
* @param theError the error
*/
QgsRasterIdentifyResult( QgsError theError );

Expand Down
2 changes: 1 addition & 1 deletion src/core/raster/qgsrasterrange.cpp
Expand Up @@ -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 ) ||
Expand Down
6 changes: 3 additions & 3 deletions src/gui/attributetable/qgsattributetablefiltermodel.h
Expand Up @@ -127,16 +127,16 @@ 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();

/**
* 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();

Expand Down
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsdualview.h
Expand Up @@ -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 );

Expand Down
6 changes: 3 additions & 3 deletions src/gui/attributetable/qgsfeaturelistmodel.h
Expand Up @@ -87,16 +87,16 @@ 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();

/**
* 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();

Expand Down
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsfeaturelistview.h
Expand Up @@ -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 );

Expand Down

0 comments on commit 6e499c3

Please sign in to comment.