Skip to content

Commit 96e47ed

Browse files
committed
fix doxygen warnings
1 parent febe37d commit 96e47ed

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

src/core/composer/qgscomposerattributetablev2.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,15 @@ class CORE_EXPORT QgsComposerAttributeTableV2: public QgsComposerTableV2
5959
/**Writes properties specific to attribute tables
6060
* @param elem an existing QDomElement in which to store the attribute table's properties.
6161
* @param doc QDomDocument for the destination xml.
62+
* @param ignoreFrames ignore frames
6263
* @see readXML
6364
*/
6465
virtual bool writeXML( QDomElement& elem, QDomDocument & doc, bool ignoreFrames = false ) const;
6566

6667
/**Reads the properties specific to an attribute table from xml.
6768
* @param itemElem a QDomElement holding the attribute table's desired properties.
6869
* @param doc QDomDocument for the source xml.
70+
* @param ignoreFrames ignore frames
6971
* @see writeXML
7072
*/
7173
virtual bool readXML( const QDomElement& itemElem, const QDomDocument& doc, bool ignoreFrames = false );
@@ -192,7 +194,7 @@ class CORE_EXPORT QgsComposerAttributeTableV2: public QgsComposerTableV2
192194
QList<QPair<int, bool> > sortAttributes() const;
193195

194196
/**Queries the attribute table's vector layer for attributes to show in the table.
195-
* @param attributeMaps list of QgsAttributeMaps where the fetched feature attributes will be stored
197+
* @param content table content
196198
* @returns true if attributes were successfully fetched
197199
* @note not available in python bindings
198200
*/

src/core/composer/qgscomposermapitem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ class CORE_EXPORT QgsComposerMapItemStack
187187
void addItem( QgsComposerMapItem* item );
188188

189189
/**Removes an item from the stack and deletes the corresponding QgsComposerMapItem
190-
* @param QgsComposerMapItem id for the QgsComposerMapItem to remove
190+
* @param itemId id for the QgsComposerMapItem to remove
191191
* @note after removing an item from the stack, update()
192192
* should be called for the QgsComposerMap to prevent rendering artifacts
193193
* @see addItem

src/core/composer/qgscomposermapoverview.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class CORE_EXPORT QgsComposerMapOverview : public QgsComposerMapItem
203203
QPainter::CompositionMode blendMode() const { return mBlendMode; }
204204

205205
/**Sets the blending mode used for drawing the overview.
206-
* @param mode blending mode for overview
206+
* @param blendMode blending mode for overview
207207
* @see blendMode
208208
*/
209209
void setBlendMode( const QPainter::CompositionMode blendMode );

src/gui/qgsidentifymenu.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ class GUI_EXPORT QgsIdentifyMenu : public QMenu
126126
* @brief exec
127127
* @param idResults the list of identify results to choose within
128128
* @param pos the position where the menu will be executed
129-
* @param selectedAction if specified, this will allow to know which action has been triggered
130129
*/
131130
QList<QgsMapToolIdentify::IdentifyResult> exec( const QList<QgsMapToolIdentify::IdentifyResult> idResults, QPoint pos );
132131

src/gui/qgsmaptoolidentify.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ class GUI_EXPORT QgsMapToolIdentify : public QgsMapTool
110110
@param y y coordinates of mouseEvent
111111
@param layerList Performs the identification within the given list of layers. Default value is an empty list, i.e. uses all the layers.
112112
@param mode Identification mode. Can use Qgis default settings or a defined mode. Default mode is DefaultQgsSetting.
113-
@param selectedAction will set the pointer of the action clicked in the menu (if corresponding mode is used). This is useful for custom actions.
114113
@return a list of IdentifyResult*/
115114
QList<IdentifyResult> identify( int x, int y, QList<QgsMapLayer*> layerList = QList<QgsMapLayer*>(), IdentifyMode mode = DefaultQgsSetting );
116115

@@ -121,7 +120,6 @@ class GUI_EXPORT QgsMapToolIdentify : public QgsMapTool
121120
@param y y coordinates of mouseEvent
122121
@param mode Identification mode. Can use Qgis default settings or a defined mode.
123122
@param layerType Only performs identification in a certain type of layers (raster, vector). Default value is AllLayers.
124-
@param selectedAction will set the pointer of the action clicked in the menu (if corresponding mode is used). This is useful for custom actions.
125123
@return a list of IdentifyResult*/
126124
QList<IdentifyResult> identify( int x, int y, IdentifyMode mode, LayerType layerType = AllLayers );
127125

@@ -146,7 +144,6 @@ class GUI_EXPORT QgsMapToolIdentify : public QgsMapTool
146144
@param mode Identification mode. Can use Qgis default settings or a defined mode.
147145
@param layerList Performs the identification within the given list of layers.
148146
@param layerType Only performs identification in a certain type of layers (raster, vector).
149-
@param selectedAction will set the pointer of the action clicked in the menu (if corresponding mode is used). This is useful for custom actions.
150147
@return a list of IdentifyResult*/
151148
QList<IdentifyResult> identify( int x, int y, IdentifyMode mode, QList<QgsMapLayer*> layerList, LayerType layerType = AllLayers );
152149

0 commit comments

Comments
 (0)