diff options
author | Johan Dahlin <johan@gnome.org> | 2004-03-27 21:54:36 +0000 |
---|---|---|
committer | Johan Dahlin <zilch@src.gnome.org> | 2004-03-27 21:54:36 +0000 |
commit | 216ec32db135475c87c139e10be5d4ae26c8e365 (patch) | |
tree | 9f14192f47e6bb702685f1eff35898ff5b3d2c00 /gobject/gobjectmodule.c | |
parent | 59ebacbe8eba4d29fa963128a045625e15e84b3a (diff) | |
download | pygobject-pygtk-2-2.tar.gz |
Merge in changes from HEAD:pygtk-2-2
2004-03-27 Johan Dahlin <johan@gnome.org>
* gtk/gtk.defs (widget_list_style_properties): This is a function,
not a method.
* pygobject-private.h, pygobject.h, gobjectmodule.c:
Make PyGParamSpec_Type and pyg_param_spec_new part of the public API.
* gtk/gtkwidget.override (_wrap_gtk_widget_style_get_property)
(_wrap_gtk_widget_class_list_style_properties): Impl. Fixes
bug 138104
* setup.py: Removed installation of libglade and libxml2 DLLs on
win32 (these are now part of the dropline installer).
patch by Cedric Gustin, fixed bug 136731
* gtk/gtk.override (_wrap_gtk_main_quit): Override, this does
two things differently from the old (auto generated) version,
first it checks if gtk_main_level() is non zero and raises a
RuntimeError if it's not. It also allows arguments and completely
ignores them, this is closer to the old 0.6.x behavior and
suitable for usage like this: obj.connect(signal, gtk.main_quit),
fixes bug 136705
* gtk/gtkmodule.c (python_do_pending_calls): Check gtk_main_level
before calling gtk_main_quit, since it might be called outside of
a mainloop (eg, gtk.main_iteration). Avoids warnings on the console
as found in example in bug 138163
2004-03-25 Johan Dahlin <johan@gnome.org>
* examples/glade/autoconnect.py: New small example
2004-03-22 Xavier Ordoquy <xordoquy@wanadoo.fr>
* gtk/gtk.defs: Removed the _gtk_* functions as the are private
and not exported in the module.
2004-03-22 Xavier Ordoquy <xordoquy@wanadoo.fr>
* codegen/h2def.py: Added the interface detection (interface -*Iface-
inheriting from GTypeInterface)
2004-03-18 Xavier Ordoquy <xordoquy@wanadoo.fr>
* codegen/h2def.py: Added the interface detection (class
inheriting from GTypeInterface)
2004-03-18 Xavier Ordoquy <xordoquy@wanadoo.fr>
* gtk/gtk.defs: Cosmetic changes to match h2def output exactly
in order to ease further merges.
2004-03-12 Johan Dahlin <johan@gnome.org>
* gtk/gtk.override (_wrap_gtk_accel_group_connect_group):
2004-03-12 Xavier Ordoquy <xordoquy@wanadoo.fr>
Fixes #136811 (h2def ignores some functions)
* codegen/h2def.py: skips the extern "C"
Diffstat (limited to 'gobject/gobjectmodule.c')
-rw-r--r-- | gobject/gobjectmodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gobject/gobjectmodule.c b/gobject/gobjectmodule.c index d780923d..068e823f 100644 --- a/gobject/gobjectmodule.c +++ b/gobject/gobjectmodule.c @@ -1941,6 +1941,9 @@ struct _PyGObject_Functions pygobject_api_functions = { pyg_set_thread_block_funcs, (PyGThreadBlockFunc)0, /* block_threads */ (PyGThreadBlockFunc)0, /* unblock_threads */ + + &PyGParamSpec_Type, + pyg_param_spec_new, }; DL_EXPORT(void) |