Skip to content

Commit 5e45a22

Browse files
committedDec 23, 2012
remove deprecated methods from API
1 parent d56b1c8 commit 5e45a22

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+13
-1185
lines changed
 

‎python/core/composer/qgscomposeritem.sip

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -211,24 +211,13 @@ class QgsComposerItem: QObject, QGraphicsRectItem
211211
/**Reads parameter that are not subclass specific in document. Usually called from readXML methods of subclasses*/
212212
bool _readXML( const QDomElement& itemElem, const QDomDocument& doc );
213213

214-
/** Whether this item has a frame or not.
215-
* @return boolean - true if there is a frame around this item, otherwise false.
216-
* @note deprecated since 1.8 don't use!
217-
* @see hasFrame
218-
*/
219-
bool frame() /Deprecated/;
220214
/** Whether this item has a frame or not.
221215
* @returns true if there is a frame around this item, otherwise false.
222216
* @note introduced since 1.8
223217
* @see hasFrame
224218
*/
225219
bool hasFrame();
226-
/** Set whether this item has a frame drawn around it or not.
227-
* @returns void
228-
* @note deprecated since 1.8 don't use!
229-
* @see setFrameEnabled
230-
*/
231-
void setFrame( bool drawFrame ) /Deprecated/;
220+
232221
/** Set whether this item has a frame drawn around it or not.
233222
* @param drawFrame draw frame
234223
* @returns nothing

‎python/core/composer/qgscomposermap.sip

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,6 @@ class QgsComposerMap : QgsComposerItem
7070
Top
7171
};
7272

73-
/**This function is deprecated*/
74-
void draw( QPainter *painter, const QgsRectangle& extent, const QSize& size, int dpi ) /Deprecated/;
75-
7673
/** \brief Draw to paint device
7774
@param painter painter
7875
@param extent map extent

0 commit comments

Comments
 (0)
Please sign in to comment.