diff options
author | Johan Dahlin <johan@src.gnome.org> | 2006-02-14 14:45:36 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2006-02-14 14:45:36 +0000 |
commit | 81a3b4bf09e9c5437b96c2f258739c91a7d2ef3a (patch) | |
tree | 5d1df81a4c516cbdbcf35c875300d36f8a47a987 | |
parent | bbb9f3cd118d9fb7438cab72c53648da7a92d014 (diff) | |
download | pygtk-81a3b4bf09e9c5437b96c2f258739c91a7d2ef3a.tar.gz |
Fix typos, found by Padraig Brady
* gtk/gtkclist.override (_wrap_gtk_clist_new_with_titles): Fix typos,
found by Padraig Brady
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gtk/gtkclist.override | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2006-02-14 Johan Dahlin <jdahlin@async.com.br> + + * gtk/gtkclist.override (_wrap_gtk_clist_new_with_titles): Fix typos, + found by Padraig Brady + 2006-02-06 Johan Dahlin <jdahlin@async.com.br> * gtk/__init__.py (_is_pydoc): Do not print the deprecation warning diff --git a/gtk/gtkclist.override b/gtk/gtkclist.override index 89906424..a3e477dc 100644 --- a/gtk/gtkclist.override +++ b/gtk/gtkclist.override @@ -157,7 +157,7 @@ _wrap_gtk_clist_prepend(PyGObject *self, PyObject *args, PyObject *kwargs) } col = GTK_CLIST(self->obj)->columns; if (PySequence_Length(py_list) < col) { - PyErr_SetString(PyExc_TypeError, "sequnce too short"); + PyErr_SetString(PyExc_TypeError, "sequence too short"); return NULL; } list = g_new(gchar *, col); @@ -196,7 +196,7 @@ _wrap_gtk_clist_append(PyGObject *self, PyObject *args, PyObject *kwargs) } col = GTK_CLIST(self->obj)->columns; if (PySequence_Length(py_list) < col) { - PyErr_SetString(PyExc_TypeError, "sequnce too short"); + PyErr_SetString(PyExc_TypeError, "sequence too short"); return NULL; } list = g_new(gchar *, col); @@ -235,7 +235,7 @@ _wrap_gtk_clist_insert(PyGObject *self, PyObject *args, PyObject *kwargs) } col = GTK_CLIST(self->obj)->columns; if (PySequence_Length(py_list) < col) { - PyErr_SetString(PyExc_TypeError, "sequnce too short"); + PyErr_SetString(PyExc_TypeError, "sequence too short"); return NULL; } list = g_new(gchar *, col); |