Changes

Jump to navigation Jump to search
Line 187: Line 187:     
Additionally, PyGTK accepted these construction parameters as positional arguments. As explained above, they must now be converted to keyword arguments.
 
Additionally, PyGTK accepted these construction parameters as positional arguments. As explained above, they must now be converted to keyword arguments.
 +
 +
=== Other considerations ===
 +
 +
''self.allocation'' property is no longer available.  Please search your code for "self.allocation" and replace it for "self.get_allocation()".
 +
 +
So to get the allocation size:
 +
 +
self.allocation.width
 +
self.allocation.height
 +
 +
should be replaced by:
 +
 +
self.get_allocated_width()
 +
self.get_allocated_height()
    
==Make a release==
 
==Make a release==
296

edits

Navigation menu