GNOME Bugzilla – Bug 632095
GtkTargetEntry: Add boxed type and constructor
Last modified: 2010-10-15 18:41:05 UTC
This allows bindings to sanely construct these.
Created attachment 172305 [details] [review] GtkTargetEntry: Add boxed type and constructor
Created attachment 172306 [details] [review] GtkTargetEntry: Add boxed type and constructor Now with no trailing whitespace
Comment on attachment 172306 [details] [review] GtkTargetEntry: Add boxed type and constructor This works for me - from gi.repository import Gtk te = Gtk.TargetEntry.new('text/html', 0,0) print(te.target) 'text/html'
Review of attachment 172306 [details] [review]: Looks fine to me