[Commits] [SCM] claws branch, gtk3, updated. 4.0.0-290-g36c0dbe2d
paul at claws-mail.org
paul at claws-mail.org
Mon Oct 4 10:08:52 CEST 2021
The branch, gtk3 has been updated
via 36c0dbe2d63c661514fc4b58a809e17b4c5a6578 (commit)
from e2e7b25a230d13cb0d7557e50de8ab5a5a802724 (commit)
Summary of changes:
src/mimeview.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 36c0dbe2d63c661514fc4b58a809e17b4c5a6578
Author: paul <paul at claws-mail.org>
Date: Mon Oct 4 09:08:49 2021 +0100
fix incompatible pointer type warning
diff --git a/src/mimeview.c b/src/mimeview.c
index 4b626d633..dcc7974df 100644
--- a/src/mimeview.c
+++ b/src/mimeview.c
@@ -1,6 +1,6 @@
/*
* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2019 the Claws Mail team and Hiroyuki Yamamoto
+ * Copyright (C) 1999-2021 the Claws Mail team and Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -1549,7 +1549,7 @@ static gboolean mimeview_scrolled(GtkWidget *widget, GdkEventScroll *event,
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)
scrollbutton->scroll_type = GTK_SCROLL_STEP_BACKWARD;
else
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list