summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/glibext/linegen.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysalide/glibext/linegen.c')
-rw-r--r--plugins/pychrysalide/glibext/linegen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/glibext/linegen.c b/plugins/pychrysalide/glibext/linegen.c
index 1ab4ec6..d7e96fd 100644
--- a/plugins/pychrysalide/glibext/linegen.c
+++ b/plugins/pychrysalide/glibext/linegen.c
@@ -123,7 +123,7 @@ static void py_line_generator_interface_init(GLineGeneratorIface *iface, gpointe
iface->count = py_line_generator_count_lines_wrapper;
iface->compute = py_line_generator_compute_cursor_wrapper;
- iface->contains = py_line_generator_contain_cursor_wrapper;
+ iface->contain = py_line_generator_contain_cursor_wrapper;
iface->get_flags = py_line_generator_get_flags_wrapper;
iface->print = py_line_generator_print_wrapper;
@@ -599,7 +599,7 @@ static PyObject *py_line_generator_contain_cursor(PyObject *self, PyObject *args
generator = G_LINE_GENERATOR(pygobject_get(self));
- status = g_line_generator_contains_cursor(generator, index, repeat, cursor);
+ status = g_line_generator_contain_cursor(generator, index, repeat, cursor);
result = PyLong_FromLong(status);