diff options
Diffstat (limited to 'plugins/pychrysalide')
-rw-r--r-- | plugins/pychrysalide/glibext/bufferline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/glibext/bufferline.c b/plugins/pychrysalide/glibext/bufferline.c index e3fd8d4..ea84567 100644 --- a/plugins/pychrysalide/glibext/bufferline.c +++ b/plugins/pychrysalide/glibext/bufferline.c @@ -203,8 +203,8 @@ static PyObject *py_buffer_line_append_text(PyObject *self, PyObject *args) static PyObject *py_buffer_line_get_text(PyObject *self, PyObject *args) { PyObject *result; /* Trouvailles à retourner */ - BufferLineColumn first; /* Première colonne à parcourir*/ - BufferLineColumn end; /* Dernière colonne à parcourir*/ + size_t first; /* Première colonne à parcourir*/ + size_t end; /* Dernière colonne à parcourir*/ int markup; /* Besoin de décorations ? */ int ret; /* Bilan de lecture des args. */ GBufferLine *line; /* Version native */ |