mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
fix doxygen warnings
This commit is contained in:
parent
054f64ca81
commit
6e499c302d
2
Doxyfile
2
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 \
|
||||
|
@ -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
|
||||
|
@ -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 );
|
||||
|
||||
|
@ -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 ) ||
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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 );
|
||||
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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 );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user