diff --git a/python/gui/qgsrubberband.sip b/python/gui/qgsrubberband.sip index 30e4100e857..ae79d55382c 100644 --- a/python/gui/qgsrubberband.sip +++ b/python/gui/qgsrubberband.sip @@ -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 ); diff --git a/src/gui/qgsrubberband.h b/src/gui/qgsrubberband.h index d91df4da6bd..646b607cfc3 100644 --- a/src/gui/qgsrubberband.h +++ b/src/gui/qgsrubberband.h @@ -53,14 +53,14 @@ class GUI_EXPORT QgsRubberBand: public QgsMapCanvasItem * A box is used to highlight points (□) */ ICON_BOX, - /** - * A full box is used to highlight points (■) - */ - ICON_FULL_BOX, /** * A circle is used to highlight points (○) */ - ICON_CIRCLE + ICON_CIRCLE, + /** + * A full box is used to highlight points (■) + */ + ICON_FULL_BOX }; /**