[pygobject/pygobject-3-2] pygtkcompat: Correct Userlist module use



commit 3f4ca905e482aad221f355586bc00b29c2547ddd
Author: Jose Rostagno <joserostagno vijona com ar>
Date:   Sun Apr 29 12:56:50 2012 -0300

    pygtkcompat: Correct Userlist module use
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675084
    
    Signed-off-by: Martin Pitt <martinpitt gnome org>

 gi/pygtkcompat.py         |    2 +-
 tests/test_pygtkcompat.py |    4 ++++
 2 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/gi/pygtkcompat.py b/gi/pygtkcompat.py
index c855a68..c6dafcd 100644
--- a/gi/pygtkcompat.py
+++ b/gi/pygtkcompat.py
@@ -330,7 +330,7 @@ def enable_gtk(version='2.0'):
             def __init__(self, req):
                 self.height = req.height
                 self.width = req.width
-                UserList.UserList.__init__(self, [self.width,
+                UserList.__init__(self, [self.width,
                                                   self.height])
         return SizeRequest(orig_size_request(widget))
     Gtk.Widget.size_request = size_request
diff --git a/tests/test_pygtkcompat.py b/tests/test_pygtkcompat.py
index 82948e2..fd0ad85 100644
--- a/tests/test_pygtkcompat.py
+++ b/tests/test_pygtkcompat.py
@@ -92,6 +92,10 @@ class TestGTKCompat(unittest.TestCase):
         self.assertEquals(combo.get_text_column(), 1)
         self.assertEquals(combo.get_child().get_text(), 'One')
 
+    def testSizeRequest(self):
+        box = gtk.Box()
+        self.assertEqual(box.size_request(), [0, 0])
+
     def testPixbuf(self):
         gtk.gdk.Pixbuf()
 



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