[cluttermm/cluttermm-1.2] Fixed const issue in get_timeline from Animator.



commit 75816ee9d8ebd2c175f32c26ba94d0fe537bbfd2
Author: Chris Kühl <chrisk openismus com>
Date:   Tue Feb 1 01:13:57 2011 +0100

    Fixed const issue in get_timeline from Animator.
    
    * clutter/src/animator.hg:

 ChangeLog               |    6 ++++++
 clutter/src/animator.hg |    2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 4d6bf4f..0f7a4c0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-02-01  Chris Kühl  <chrisk openismus com>
+
+	Fixed const issue in get_timeline from Animator.
+
+	* clutter/src/animator.hg:
+
 2011-01-31  Chris Kühl  <chrisk openismus com>
 
 	Added refreturn & constversions of set_key, start, and get_timeline to Animator.
diff --git a/clutter/src/animator.hg b/clutter/src/animator.hg
index 21b4595..4c72e5d 100644
--- a/clutter/src/animator.hg
+++ b/clutter/src/animator.hg
@@ -50,7 +50,7 @@ public:
   _WRAP_METHOD(bool compute_value(const Glib::RefPtr<Glib::Object>& object, const Glib::ustring& property_name, double progress, Glib::ValueBase& value), clutter_animator_compute_value)
 
   _WRAP_METHOD(void set_timeline(const Glib::RefPtr<Timeline>& timeline), clutter_animator_set_timeline)
-  _WRAP_METHOD(Glib::RefPtr<Timeline> get_timeline() const, clutter_animator_get_timeline, refreturn)
+  _WRAP_METHOD(Glib::RefPtr<Timeline> get_timeline(), clutter_animator_get_timeline, refreturn)
   _WRAP_METHOD(Glib::RefPtr<const Timeline> get_timeline() const, clutter_animator_get_timeline, refreturn, constversion)
   _WRAP_METHOD(void set_duration(guint duration), clutter_animator_set_duration)
   _WRAP_METHOD(guint get_duration() const, clutter_animator_get_duration)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]