Skip to content

Commit 43c545c

Browse files
committed
[composer] Fix docs for composer arrow
1 parent 4949a3b commit 43c545c

File tree

2 files changed

+24
-22
lines changed

2 files changed

+24
-22
lines changed

python/core/composer/qgscomposerarrow.sip

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -98,33 +98,33 @@ class QgsComposerArrow: QgsComposerItem
9898
*/
9999
void setArrowColor( const QColor& c ) /Deprecated/;
100100

101-
/**Sets the color used to draw the outline around the arrow head.
102-
* @param color arrow head outline color
103-
* @see setArrowHeadFillColor
101+
/**Returns the color used to draw outline around the the arrow head.
102+
* @returns arrow head outline color
104103
* @see arrowHeadFillColor
104+
* @see setArrowHeadOutlineColor
105105
* @note added in 2.5
106106
*/
107107
QColor arrowHeadOutlineColor() const;
108108

109-
/**Returns the color used to draw outline around the the arrow head.
110-
* @returns arrow head outline color
111-
* @see arrowHeadFillColor
109+
/**Sets the color used to draw the outline around the arrow head.
110+
* @param color arrow head outline color
112111
* @see setArrowHeadFillColor
112+
* @see arrowHeadOutlineColor
113113
* @note added in 2.5
114114
*/
115115
void setArrowHeadOutlineColor( const QColor& color );
116116

117-
/**Sets the color used to draw the arrow head.
118-
* @param color arrow head color
119-
* @see setArrowHeadFillColor
117+
/**Returns the color used to fill the arrow head.
118+
* @returns arrow head fill color
120119
* @see arrowHeadOutlineColor
120+
* @see setArrowHeadFillColor
121121
* @note added in 2.5
122122
*/
123123
QColor arrowHeadFillColor() const;
124124

125-
/**Returns the color used to draw the arrow head.
126-
* @returns arrow head color
127-
* @see arrowHeadColor
125+
/**Sets the color used to fill the arrow head.
126+
* @param color arrow head fill color
127+
* @see arrowHeadFillColor
128128
* @see setArrowHeadOutlineColor
129129
* @note added in 2.5
130130
*/

src/core/composer/qgscomposerarrow.h

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -122,31 +122,33 @@ class CORE_EXPORT QgsComposerArrow: public QgsComposerItem
122122
*/
123123
Q_DECL_DEPRECATED void setArrowColor( const QColor& c );
124124

125-
/**Sets the color used to draw the outline around the arrow head.
126-
* @see setArrowHeadFillColor
125+
/**Returns the color used to draw outline around the the arrow head.
126+
* @returns arrow head outline color
127127
* @see arrowHeadFillColor
128+
* @see setArrowHeadOutlineColor
128129
* @note added in 2.5
129130
*/
130131
QColor arrowHeadOutlineColor() const { return mArrowHeadOutlineColor; }
131132

132-
/**Returns the color used to draw outline around the the arrow head.
133-
* @returns arrow head outline color
134-
* @see arrowHeadFillColor
133+
/**Sets the color used to draw the outline around the arrow head.
134+
* @param color arrow head outline color
135135
* @see setArrowHeadFillColor
136+
* @see arrowHeadOutlineColor
136137
* @note added in 2.5
137138
*/
138139
void setArrowHeadOutlineColor( const QColor& color );
139140

140-
/**Sets the color used to draw the arrow head.
141-
* @see setArrowHeadFillColor
141+
/**Returns the color used to fill the arrow head.
142+
* @returns arrow head fill color
142143
* @see arrowHeadOutlineColor
144+
* @see setArrowHeadFillColor
143145
* @note added in 2.5
144146
*/
145147
QColor arrowHeadFillColor() const { return mArrowHeadFillColor; }
146148

147-
/**Returns the color used to draw the arrow head.
148-
* @returns arrow head color
149-
* @see arrowHeadColor
149+
/**Sets the color used to fill the arrow head.
150+
* @param color arrow head fill color
151+
* @see arrowHeadFillColor
150152
* @see setArrowHeadOutlineColor
151153
* @note added in 2.5
152154
*/

0 commit comments

Comments
 (0)