summaryrefslogtreecommitdiff
path: root/atkmodule.c
diff options
context:
space:
mode:
authorJohn Finlay <finlay@src.gnome.org>2006-07-06 07:26:54 +0000
committerJohn Finlay <finlay@src.gnome.org>2006-07-06 07:26:54 +0000
commit96ec5d0af9354d536f1d56fafd53dd92d42cbe5c (patch)
tree2a34c55daaaa7354eb1a40d85cdca1937097d4e8 /atkmodule.c
parent4ecf6350c933ac2a0f83177dae701a9e5db45fe5 (diff)
downloadpygtk-96ec5d0af9354d536f1d56fafd53dd92d42cbe5c.tar.gz
Add call to _pyatk_register_boxed_types()
* atkmodule.c (initatk): Add call to _pyatk_register_boxed_types() * Makefile.am (ATK_OVERRIDES): Add atkrectangle.override * atkrectangle.override: Add. * atk.override (_wrap_atk_text_get_text_at_offset) (_wrap_atk_text_get_text_before_offset) (_wrap_atk_text_get_character_extents) (_wrap_atk_text_get_run_attributes) (_wrap_atk_text_get_default_attributes) (_wrap_atk_text_get_bounded_ranges, _wrap_atk_text_get_selection) (_wrap_atk_text_get_range_extents): Add, * atk.defs (atk_rectangle_new): Add.
Diffstat (limited to 'atkmodule.c')
-rw-r--r--atkmodule.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/atkmodule.c b/atkmodule.c
index ca1dbfdc..91c447a9 100644
--- a/atkmodule.c
+++ b/atkmodule.c
@@ -29,6 +29,7 @@
void pyatk_register_classes (PyObject *d);
void pyatk_add_constants(PyObject *module, const gchar *strip_prefix);
+void _pyatk_register_boxed_types(void);
extern PyMethodDef pyatk_functions[];
@@ -41,7 +42,7 @@ initatk(void)
m = Py_InitModule ("atk", pyatk_functions);
d = PyModule_GetDict (m);
-
+ _pyatk_register_boxed_types();
pyatk_register_classes (d);
pyatk_add_constants(m, "ATK_");
}