Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[composer] Fix docs for composer arrow
  • Loading branch information
nyalldawson committed Aug 14, 2014
1 parent 4949a3b commit 43c545c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
24 changes: 12 additions & 12 deletions python/core/composer/qgscomposerarrow.sip
Expand Up @@ -98,33 +98,33 @@ class QgsComposerArrow: QgsComposerItem
*/
void setArrowColor( const QColor& c ) /Deprecated/;

/**Sets the color used to draw the outline around the arrow head.
* @param color arrow head outline color
* @see setArrowHeadFillColor
/**Returns the color used to draw outline around the the arrow head.
* @returns arrow head outline color
* @see arrowHeadFillColor
* @see setArrowHeadOutlineColor
* @note added in 2.5
*/
QColor arrowHeadOutlineColor() const;

/**Returns the color used to draw outline around the the arrow head.
* @returns arrow head outline color
* @see arrowHeadFillColor
/**Sets the color used to draw the outline around the arrow head.
* @param color arrow head outline color
* @see setArrowHeadFillColor
* @see arrowHeadOutlineColor
* @note added in 2.5
*/
void setArrowHeadOutlineColor( const QColor& color );

/**Sets the color used to draw the arrow head.
* @param color arrow head color
* @see setArrowHeadFillColor
/**Returns the color used to fill the arrow head.
* @returns arrow head fill color
* @see arrowHeadOutlineColor
* @see setArrowHeadFillColor
* @note added in 2.5
*/
QColor arrowHeadFillColor() const;

/**Returns the color used to draw the arrow head.
* @returns arrow head color
* @see arrowHeadColor
/**Sets the color used to fill the arrow head.
* @param color arrow head fill color
* @see arrowHeadFillColor
* @see setArrowHeadOutlineColor
* @note added in 2.5
*/
Expand Down
22 changes: 12 additions & 10 deletions src/core/composer/qgscomposerarrow.h
Expand Up @@ -122,31 +122,33 @@ class CORE_EXPORT QgsComposerArrow: public QgsComposerItem
*/
Q_DECL_DEPRECATED void setArrowColor( const QColor& c );

/**Sets the color used to draw the outline around the arrow head.
* @see setArrowHeadFillColor
/**Returns the color used to draw outline around the the arrow head.
* @returns arrow head outline color
* @see arrowHeadFillColor
* @see setArrowHeadOutlineColor
* @note added in 2.5
*/
QColor arrowHeadOutlineColor() const { return mArrowHeadOutlineColor; }

/**Returns the color used to draw outline around the the arrow head.
* @returns arrow head outline color
* @see arrowHeadFillColor
/**Sets the color used to draw the outline around the arrow head.
* @param color arrow head outline color
* @see setArrowHeadFillColor
* @see arrowHeadOutlineColor
* @note added in 2.5
*/
void setArrowHeadOutlineColor( const QColor& color );

/**Sets the color used to draw the arrow head.
* @see setArrowHeadFillColor
/**Returns the color used to fill the arrow head.
* @returns arrow head fill color
* @see arrowHeadOutlineColor
* @see setArrowHeadFillColor
* @note added in 2.5
*/
QColor arrowHeadFillColor() const { return mArrowHeadFillColor; }

/**Returns the color used to draw the arrow head.
* @returns arrow head color
* @see arrowHeadColor
/**Sets the color used to fill the arrow head.
* @param color arrow head fill color
* @see arrowHeadFillColor
* @see setArrowHeadOutlineColor
* @note added in 2.5
*/
Expand Down

0 comments on commit 43c545c

Please sign in to comment.