summaryrefslogtreecommitdiff
path: root/gtkmodule.c
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>2001-03-13 05:41:00 +0000
committerJames Henstridge <jamesh@src.gnome.org>2001-03-13 05:41:00 +0000
commita97b10d7e4df7f18b12f5654ac2ad4d1cc090c56 (patch)
tree4a40891ac948e1ef7aa8e1f56fc32a25f8db7e32 /gtkmodule.c
parent7257836a22fae4da4a0c0f48472168238a25463b (diff)
downloadpygtk-a97b10d7e4df7f18b12f5654ac2ad4d1cc090c56.tar.gz
add configure checks for the pixbuf library.
2001-03-13 James Henstridge <james@daa.com.au> * configure.in (BUILD_PIXBUF): add configure checks for the pixbuf library. * gdkpixbufmodule.c, pygdkpixbuf.h: start of a GdkPixbuf module. Only covers the basics the GdkPixbuf type right now -- no animations or progressive loading. * gtk.py (GtkNotebook.set_tab_vborder): call the correct function here. * gtkmodule.c (_wrap_gtk_clist_get_pixmap): fix format string for reading args here.
Diffstat (limited to 'gtkmodule.c')
-rw-r--r--gtkmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtkmodule.c b/gtkmodule.c
index 01969613..57a20824 100644
--- a/gtkmodule.c
+++ b/gtkmodule.c
@@ -4586,7 +4586,7 @@ static PyObject *_wrap_gtk_clist_get_pixmap(PyObject *self, PyObject *args) {
GdkPixmap *p;
GdkBitmap *m;
- if (!PyArg_ParseTuple(args, "O!iiO!:gtk_clist_get_pixmap", &PyGtk_Type,
+ if (!PyArg_ParseTuple(args, "O!ii:gtk_clist_get_pixmap", &PyGtk_Type,
&o, &r, &c))
return NULL;
if (!gtk_clist_get_pixmap(GTK_CLIST(PyGtk_Get(o)), r, c, &p, &m)) {