summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-07-27 23:00:48 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-07-27 23:00:48 (GMT)
commit34d28c7418342d3c67be4747b13cdcb124edda32 (patch)
tree9bfb5726e9c748c522f703a714466ef69ce16cf7 /plugins/pychrysalide
parentd9c8eaac961b6fa097b362b2202c176a5ef16ec2 (diff)
Deleted all tracks of the column specific definitions.
Diffstat (limited to 'plugins/pychrysalide')
-rw-r--r--plugins/pychrysalide/glibext/bufferline.c4
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 */