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 /src/gtkext | |
parent | 24d47dfce830d44fd435805124f1727f24baf24b (diff) |
Typo.
Diffstat (limited to 'src/gtkext')
-rw-r--r-- | src/gtkext/gtkbufferdisplay.c | 2 | ||||
-rw-r--r-- | src/gtkext/gtkbufferdisplay.h | 2 | ||||
-rw-r--r-- | src/gtkext/gtkgraphdisplay.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gtkext/gtkbufferdisplay.c b/src/gtkext/gtkbufferdisplay.c index 65b9603..eec0e5b 100644 --- a/src/gtkext/gtkbufferdisplay.c +++ b/src/gtkext/gtkbufferdisplay.c @@ -936,7 +936,7 @@ GBufferView *gtk_buffer_display_get_view(const GtkBufferDisplay *display) * * ******************************************************************************/ -bool gtk_buffer_display_contains_cursor(const GtkBufferDisplay *display, const GLineCursor *cursor) +bool gtk_buffer_display_contain_cursor(const GtkBufferDisplay *display, const GLineCursor *cursor) { bool result; /* Bilan à retourner */ GLineCursor *start; /* Position initiale du tampon */ diff --git a/src/gtkext/gtkbufferdisplay.h b/src/gtkext/gtkbufferdisplay.h index 637c75c..2aec5a8 100644 --- a/src/gtkext/gtkbufferdisplay.h +++ b/src/gtkext/gtkbufferdisplay.h @@ -60,7 +60,7 @@ GBufferView *gtk_buffer_display_get_view(const GtkBufferDisplay *); /* Détermine si une position est comprise dans l'affichage. */ -bool gtk_buffer_display_contains_cursor(const GtkBufferDisplay *, const GLineCursor *); +bool gtk_buffer_display_contain_cursor(const GtkBufferDisplay *, const GLineCursor *); /* Déplace le curseur à un emplacement en extrémité. */ bool gtk_buffer_display_move_caret_to(GtkBufferDisplay *, bool, gint *); diff --git a/src/gtkext/gtkgraphdisplay.c b/src/gtkext/gtkgraphdisplay.c index c1cc956..779cae1 100644 --- a/src/gtkext/gtkgraphdisplay.c +++ b/src/gtkext/gtkgraphdisplay.c @@ -1044,7 +1044,7 @@ static bool gtk_graph_display_get_cursor_coordinates(const GtkGraphDisplay *disp if (!GTK_IS_BUFFER_DISPLAY(child)) continue; - result = gtk_buffer_display_contains_cursor(GTK_BUFFER_DISPLAY(child), cursor); + result = gtk_buffer_display_contain_cursor(GTK_BUFFER_DISPLAY(child), cursor); if (result) { |