talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 57c52f338b9bbdfab6264ae7a6175b964feb1c79
parent 36c0dbe2d63c661514fc4b58a809e17b4c5a6578
Author: paul <paul@claws-mail.org>
Date:   Mon,  4 Oct 2021 09:14:57 +0100

fix incompatible pointer type warning

Diffstat:
Msrc/textview.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/textview.c b/src/textview.c @@ -2754,7 +2754,7 @@ static gboolean textview_scrolled(GtkWidget *widget, gdouble x, y; if ((event->direction == GDK_SCROLL_SMOOTH) && - gdk_event_get_scroll_deltas(event, &x, &y)) { + gdk_event_get_scroll_deltas((GdkEvent *)event, &x, &y)) { if (y < 0) textview_zoom(widget, TRUE); else