[cluttermm] Temporarily removing methods with std::map containing a Glib::ValueBase.
- From: Chris Kühl <chriskuehl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cluttermm] Temporarily removing methods with std::map containing a Glib::ValueBase.
- Date: Sun, 27 Feb 2011 08:22:43 +0000 (UTC)
commit fc70bb684e73955cf58b03150e05f7d57e182121
Author: Chris Kühl <chrisk openismus com>
Date: Sun Feb 27 09:21:09 2011 +0100
Temporarily removing methods with std::map containing a Glib::ValueBase.
ChangeLog | 7 +++++++
clutter/src/actor.hg | 7 ++++---
clutter/src/box.hg | 3 ++-
3 files changed, 13 insertions(+), 4 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 93a466d..bd3d31b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2011-02-27 Chris Kühl <chrisk openismus com>
+ Temporarily removing methods with std::map containing a Glib::ValueBase.
+
+ * clutter/src/actor.hg:
+ * clutter/src/box.hg:
+
+2011-02-27 Chris Kühl <chrisk openismus com>
+
Fixed inheritance and layout-manager issues in box.hg.
* clutter/src/box.hg:
diff --git a/clutter/src/actor.hg b/clutter/src/actor.hg
index c55f466..35b9be3 100644
--- a/clutter/src/actor.hg
+++ b/clutter/src/actor.hg
@@ -262,9 +262,10 @@ public:
_IGNORE(clutter_actor_animatev, clutter_actor_animate_with_timelinev, clutter_actor_animate_with_alphav)
//TODO: Documentation.
- Glib::RefPtr<Animation> animate(gulong mode, guint duration, const std::map<std::string, Glib::ValueBase>& properties);
- Glib::RefPtr<Animation> animate(gulong mode, const Glib::RefPtr<Timeline>& timeline, const std::map<std::string, Glib::ValueBase>& properties);
- Glib::RefPtr<Animation> animate(const Glib::RefPtr<Alpha>& alpha, const std::map<std::string, Glib::ValueBase>& properties);
+ // FIXME: The std::map with a Glib::ValueBase does not work.
+ // Glib::RefPtr<Animation> animate(gulong mode, guint duration, const std::map<std::string, Glib::ValueBase>& properties);
+ // Glib::RefPtr<Animation> animate(gulong mode, const Glib::RefPtr<Timeline>& timeline, const std::map<std::string, Glib::ValueBase>& properties);
+ // Glib::RefPtr<Animation> animate(const Glib::RefPtr<Alpha>& alpha, const std::map<std::string, Glib::ValueBase>& properties);
_WRAP_METHOD(Glib::RefPtr<Animation> get_animation(), clutter_actor_get_animation, refreturn)
_WRAP_METHOD(Glib::RefPtr<const Animation> get_animation() const, clutter_actor_get_animation, refreturn, constversion)
diff --git a/clutter/src/box.hg b/clutter/src/box.hg
index d48f73b..90ea3a8 100644
--- a/clutter/src/box.hg
+++ b/clutter/src/box.hg
@@ -52,7 +52,8 @@ public:
_IGNORE(clutter_box_packv, clutter_box_pack, clutter_box_pack_before, clutter_box_pack_after, clutter_box_pack_at)
// TODO: Documentation
- void pack(const Glib::RefPtr<Actor>& actor, const std::map<std::string, Glib::ValueBase>& properties);
+ // FIXME: The std::map with a Glib::ValueBase does not work.
+ // void pack(const Glib::RefPtr<Actor>& actor, const std::map<std::string, Glib::ValueBase>& properties);
_WRAP_PROPERTY("color", Color)
_WRAP_PROPERTY("color-set", bool)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]