[pyclutter/wip/introspection] Remove get_transformed_position override



commit 22f0753c1062cef9635217100cadc0eb0d2856b2
Author: Bastian Winkler <buz netbuz org>
Date:   Wed May 9 12:12:16 2012 +0200

    Remove get_transformed_position override
    
    This method has no return value, so there is no need for an override.

 introspection/Clutter.py |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)
---
diff --git a/introspection/Clutter.py b/introspection/Clutter.py
index b8c7aee..acc2d7d 100644
--- a/introspection/Clutter.py
+++ b/introspection/Clutter.py
@@ -452,7 +452,6 @@ class Event(Clutter.Event):
             Clutter.EventType.TOUCH_CANCEL: 'touch'
         })
 
-
     def __new__(cls, *args, **kwargs):
         return Clutter.Event.__new__(cls)
 
@@ -665,11 +664,6 @@ class Actor(Clutter.Actor):
         if success:
             return (x_out, y_out)
 
-    def get_transformed_position(self):
-        success, x, y = super(Actor, self).get_transformed_position()
-        if success:
-            return (x, y)
-
     def get_paint_box(self):
         success, box = super(Actor, self).get_paint_box()
         if success:



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