Skip to content

Commit

Permalink
fix doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Sep 21, 2014
1 parent febe37d commit 96e47ed
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
4 changes: 3 additions & 1 deletion src/core/composer/qgscomposerattributetablev2.h
Expand Up @@ -59,13 +59,15 @@ class CORE_EXPORT QgsComposerAttributeTableV2: public QgsComposerTableV2
/**Writes properties specific to attribute tables
* @param elem an existing QDomElement in which to store the attribute table's properties.
* @param doc QDomDocument for the destination xml.
* @param ignoreFrames ignore frames
* @see readXML
*/
virtual bool writeXML( QDomElement& elem, QDomDocument & doc, bool ignoreFrames = false ) const;

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

/**Queries the attribute table's vector layer for attributes to show in the table.
* @param attributeMaps list of QgsAttributeMaps where the fetched feature attributes will be stored
* @param content table content
* @returns true if attributes were successfully fetched
* @note not available in python bindings
*/
Expand Down
2 changes: 1 addition & 1 deletion src/core/composer/qgscomposermapitem.h
Expand Up @@ -187,7 +187,7 @@ class CORE_EXPORT QgsComposerMapItemStack
void addItem( QgsComposerMapItem* item );

/**Removes an item from the stack and deletes the corresponding QgsComposerMapItem
* @param QgsComposerMapItem id for the QgsComposerMapItem to remove
* @param itemId id for the QgsComposerMapItem to remove
* @note after removing an item from the stack, update()
* should be called for the QgsComposerMap to prevent rendering artifacts
* @see addItem
Expand Down
2 changes: 1 addition & 1 deletion src/core/composer/qgscomposermapoverview.h
Expand Up @@ -203,7 +203,7 @@ class CORE_EXPORT QgsComposerMapOverview : public QgsComposerMapItem
QPainter::CompositionMode blendMode() const { return mBlendMode; }

/**Sets the blending mode used for drawing the overview.
* @param mode blending mode for overview
* @param blendMode blending mode for overview
* @see blendMode
*/
void setBlendMode( const QPainter::CompositionMode blendMode );
Expand Down
1 change: 0 additions & 1 deletion src/gui/qgsidentifymenu.h
Expand Up @@ -126,7 +126,6 @@ class GUI_EXPORT QgsIdentifyMenu : public QMenu
* @brief exec
* @param idResults the list of identify results to choose within
* @param pos the position where the menu will be executed
* @param selectedAction if specified, this will allow to know which action has been triggered
*/
QList<QgsMapToolIdentify::IdentifyResult> exec( const QList<QgsMapToolIdentify::IdentifyResult> idResults, QPoint pos );

Expand Down
3 changes: 0 additions & 3 deletions src/gui/qgsmaptoolidentify.h
Expand Up @@ -110,7 +110,6 @@ class GUI_EXPORT QgsMapToolIdentify : public QgsMapTool
@param y y coordinates of mouseEvent
@param layerList Performs the identification within the given list of layers. Default value is an empty list, i.e. uses all the layers.
@param mode Identification mode. Can use Qgis default settings or a defined mode. Default mode is DefaultQgsSetting.
@param selectedAction will set the pointer of the action clicked in the menu (if corresponding mode is used). This is useful for custom actions.
@return a list of IdentifyResult*/
QList<IdentifyResult> identify( int x, int y, QList<QgsMapLayer*> layerList = QList<QgsMapLayer*>(), IdentifyMode mode = DefaultQgsSetting );

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

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

Expand Down

0 comments on commit 96e47ed

Please sign in to comment.