summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkbufferdisplay.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-07-14 09:16:39 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-07-14 09:16:39 (GMT)
commite0af5dc9c01a5b9649c68ec63109ba98b6843329 (patch)
tree678f88b1338d57838e4d2d31747da8c645487662 /src/gtkext/gtkbufferdisplay.c
parent91e69d0a853af5de0cc47161106520d4e52ed1d9 (diff)
Removed the unused address parameter when relocating carets.
Diffstat (limited to 'src/gtkext/gtkbufferdisplay.c')
-rw-r--r--src/gtkext/gtkbufferdisplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkext/gtkbufferdisplay.c b/src/gtkext/gtkbufferdisplay.c
index ad0589e..45c7193 100644
--- a/src/gtkext/gtkbufferdisplay.c
+++ b/src/gtkext/gtkbufferdisplay.c
@@ -943,7 +943,7 @@ static void gtk_buffer_display_relocate_caret(GtkBufferDisplay *display, const c
copy_vmpa(&display->caret_addr, addr);
if (GTK_BUFFER_DISPLAY_GET_CLASS(display)->notify_caret != NULL)
- need_redraw = GTK_BUFFER_DISPLAY_GET_CLASS(display)->notify_caret(display, area, addr);
+ need_redraw = GTK_BUFFER_DISPLAY_GET_CLASS(display)->notify_caret(display, area);
else
need_redraw = false;