summaryrefslogtreecommitdiff
path: root/gi
diff options
context:
space:
mode:
authorJohn Stowers <john.stowers@gmail.com>2011-03-06 23:05:33 +1300
committerJohn Stowers <john.stowers@gmail.com>2011-03-10 10:15:37 +1300
commit0877670e184a591866cbf3ab14284fcb217b540b (patch)
tree8c84c3ed4d7baab2cded9d07cf7013a242dc5c61 /gi
parent1f69c520d95fec30094fac47cb0efa31c79da81c (diff)
downloadpygobject-0877670e184a591866cbf3ab14284fcb217b540b.tar.gz
[gi-overrides] TreeViewColumn.set_cell_data_func func_data can be None
https://bugzilla.gnome.org/show_bug.cgi?id=644343
Diffstat (limited to 'gi')
-rw-r--r--gi/overrides/Gtk.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gi/overrides/Gtk.py b/gi/overrides/Gtk.py
index 55d139ed..07b98671 100644
--- a/gi/overrides/Gtk.py
+++ b/gi/overrides/Gtk.py
@@ -1116,6 +1116,8 @@ class TreeViewColumn(Gtk.TreeViewColumn):
if success:
return (start_pos, width,)
+ def set_cell_data_func(self, cell_renderer, func, func_data=None):
+ super(TreeViewColumn, self).set_cell_data_func(cell_renderer, func, func_data)
TreeViewColumn = override(TreeViewColumn)
__all__.append('TreeViewColumn')