Skip to content

Commit 267b960

Browse files
committed
fix doxygen warning
1 parent 22346cd commit 267b960

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/core/composer/qgscomposeritem.h

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,16 +128,22 @@ class CORE_EXPORT QgsComposerItem: public QObject, public QGraphicsRectItem
128128
virtual void moveContent( double dx, double dy ) { Q_UNUSED( dx ); Q_UNUSED( dy ); }
129129

130130
/**Zoom content of item. Does nothing per default (but implemented in composer map)
131-
@param delta value from wheel event that describes magnitude and direction (positive /negative number)
132-
@param x x-position of mouse cursor (in item coordinates)
133-
@param y y-position of mouse cursor (in item coordinates)*/
131+
@param delta value from wheel event that describes magnitude and direction (positive /negative number)
132+
@param x x-position of mouse cursor (in item coordinates)
133+
@param y y-position of mouse cursor (in item coordinates)*/
134134
virtual void zoomContent( int delta, double x, double y ) { Q_UNUSED( delta ); Q_UNUSED( x ); Q_UNUSED( y ); }
135135

136136
/**Moves the item to a new position (in canvas coordinates)*/
137137
void setItemPosition( double x, double y, ItemPositionMode itemPoint = UpperLeft );
138138

139139
/**Sets item position and width / height in one go
140-
*@param posIncludesFrame set to true if the position and size arguments include the item's frame border
140+
@param x item position x
141+
@param y item position y
142+
@param width item width
143+
@param height item height
144+
@param itemPoint item position mode
145+
@param posIncludesFrame set to true if the position and size arguments include the item's frame border
146+
141147
@note: this method was added in version 1.6*/
142148
void setItemPosition( double x, double y, double width, double height, ItemPositionMode itemPoint = UpperLeft, bool posIncludesFrame = false );
143149

0 commit comments

Comments
 (0)