diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2018-03-31 07:55:38 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2018-03-31 10:16:20 +0200 |
commit | 55cc485fb5b9ff41d3aa63a2023390a120ad2fa3 (patch) | |
tree | 6866d4f26904d193341d3ee0f01f8c4cbc8da1b8 /gi/pygi-source.c | |
parent | 9739ccee4ee3508cea9086f33daebb9d8f10a6fd (diff) | |
download | pygobject-55cc485fb5b9ff41d3aa63a2023390a120ad2fa3.tar.gz |
pygi-boxed: clean up function names
Diffstat (limited to 'gi/pygi-source.c')
-rw-r--r-- | gi/pygi-source.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gi/pygi-source.c b/gi/pygi-source.c index 210bd157..d09849f0 100644 --- a/gi/pygi-source.c +++ b/gi/pygi-source.c @@ -287,7 +287,7 @@ pyg_source_new (void) py_type = pygi_type_import_by_name ("GLib", "Source"); /* g_source_new uses malloc, not slices */ - source->obj = _pygi_boxed_new ( (PyTypeObject *) py_type, source, FALSE, 0); + source->obj = pygi_boxed_new ( (PyTypeObject *) py_type, source, FALSE, 0); return source->obj; } |