Skip to content

Commit

Permalink
rubberband: respect enum order, add new icon type in SIP
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Oct 29, 2013
1 parent 4d6be55 commit d17ea5d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion python/gui/qgsrubberband.sip
Expand Up @@ -13,7 +13,8 @@ class QgsRubberBand: QgsMapCanvasItem
ICON_CROSS,
ICON_X,
ICON_BOX,
ICON_CIRCLE
ICON_CIRCLE,
ICON_FULL_BOX
};

QgsRubberBand( QgsMapCanvas* mapCanvas /TransferThis/, QGis::GeometryType geometryType = QGis::Line );
Expand Down
8 changes: 4 additions & 4 deletions src/gui/qgsrubberband.h
Expand Up @@ -54,13 +54,13 @@ class GUI_EXPORT QgsRubberBand: public QgsMapCanvasItem
*/
ICON_BOX,
/**
* A full box is used to highlight points ()
* A circle is used to highlight points ()
*/
ICON_FULL_BOX,
ICON_CIRCLE,
/**
* A circle is used to highlight points ()
* A full box is used to highlight points ()
*/
ICON_CIRCLE
ICON_FULL_BOX
};

/**
Expand Down

0 comments on commit d17ea5d

Please sign in to comment.