diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2020-07-14 22:14:50 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2020-07-14 22:14:50 (GMT) |
commit | b806230a94be8d3cefb79d7756c95660033596b2 (patch) | |
tree | 16f1db10a2c025a3f556a0c9e1b30e8d45062915 /plugins | |
parent | 24d47dfce830d44fd435805124f1727f24baf24b (diff) |
Typo.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/pychrysalide/glibext/linegen.c | 4 |
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); |