summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2012-02-10 09:28:36 +0100
committerMartin Pitt <martin.pitt@ubuntu.com>2012-02-10 09:28:36 +0100
commit50c3b1bad3ea79750649f4b48fce0adbfaba5268 (patch)
treecdbdadeae3de2fd5dda5af6a1e81bd962e28c5c8
parent6ab542fb3ec1031922ba65664d77bbaac0df453e (diff)
downloadpygobject-50c3b1bad3ea79750649f4b48fce0adbfaba5268.tar.gz
Fix cset_first typo
https://bugzilla.gnome.org/show_bug.cgi?id=649267
-rw-r--r--gi/_gobject/pygparamspec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gi/_gobject/pygparamspec.c b/gi/_gobject/pygparamspec.c
index 77436291..94f1dbbb 100644
--- a/gi/_gobject/pygparamspec.c
+++ b/gi/_gobject/pygparamspec.c
@@ -320,7 +320,7 @@ pyg_param_spec_getattr(PyGParamSpec *self, const gchar *attr)
} else if (G_IS_PARAM_SPEC_STRING(pspec)) {
if (!strcmp(attr, "__members__")) {
return Py_BuildValue("[ssssssssssssss]", "__doc__", "__gtype__",
- "blurb", "cset_firth", "cset_nth", "default_value",
+ "blurb", "cset_first", "cset_nth", "default_value",
"ensure_non_null", "flags", "name", "nick",
"null_fold_if_empty", "owner_type", "substitutor",
"value_type");