summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/ganv/Canvas.hpp2
-rw-r--r--include/ganv/Item.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/ganv/Canvas.hpp b/include/ganv/Canvas.hpp
index 350a6e7..fe94ff9 100644
--- a/include/ganv/Canvas.hpp
+++ b/include/ganv/Canvas.hpp
@@ -146,7 +146,7 @@ public:
sigc::signal<void, Node*, Node*> signal_disconnect;
private:
- GanvCanvas* const _gobj;
+ GanvCanvas* _gobj;
};
} // namespace Ganv
diff --git a/include/ganv/Item.hpp b/include/ganv/Item.hpp
index e6b690c..0d14a19 100644
--- a/include/ganv/Item.hpp
+++ b/include/ganv/Item.hpp
@@ -78,7 +78,7 @@ public:
SIGNAL1(click, GdkEventButton*)
protected:
- GanvItem* const _gobj;
+ GanvItem* _gobj;
private:
static gboolean on_item_event(GanvItem*, GdkEvent* ev, void* item)