Commit 438e78f7f083bb1ce034205b905461c0437eb303
1 parent
5ac55a01
Exists in
master
and in
1 other branch
Android - Iniciando implementação de suporte para script de autostart
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
mouse.c
| @@ -273,7 +273,7 @@ void v3270_set_scroll_action(GtkWidget *widget, GdkScrollDirection direction, Gt | @@ -273,7 +273,7 @@ void v3270_set_scroll_action(GtkWidget *widget, GdkScrollDirection direction, Gt | ||
| 273 | action_scroll[((int) direction) & 0x03] = action; | 273 | action_scroll[((int) direction) & 0x03] = action; |
| 274 | } | 274 | } |
| 275 | 275 | ||
| 276 | -gboolean v3270_scroll_event(GtkWidget *widget, GdkEventScroll *event, gpointer user_data) | 276 | +gboolean v3270_scroll_event(GtkWidget *widget, GdkEventScroll *event) |
| 277 | { | 277 | { |
| 278 | v3270 * terminal = GTK_V3270(widget); | 278 | v3270 * terminal = GTK_V3270(widget); |
| 279 | 279 |
private.h
| @@ -254,6 +254,6 @@ gboolean v3270_button_release_event(GtkWidget *widget, GdkEventButton*event); | @@ -254,6 +254,6 @@ gboolean v3270_button_release_event(GtkWidget *widget, GdkEventButton*event); | ||
| 254 | gboolean v3270_motion_notify_event(GtkWidget *widget, GdkEventMotion *event); | 254 | gboolean v3270_motion_notify_event(GtkWidget *widget, GdkEventMotion *event); |
| 255 | void v3270_emit_popup(v3270 *widget, int baddr, GdkEventButton *event); | 255 | void v3270_emit_popup(v3270 *widget, int baddr, GdkEventButton *event); |
| 256 | gint v3270_get_offset_at_point(v3270 *widget, gint x, gint y); | 256 | gint v3270_get_offset_at_point(v3270 *widget, gint x, gint y); |
| 257 | -gboolean v3270_scroll_event(GtkWidget *widget, GdkEventScroll *event, gpointer user_data); | 257 | +gboolean v3270_scroll_event(GtkWidget *widget, GdkEventScroll *event); |
| 258 | 258 | ||
| 259 | G_END_DECLS | 259 | G_END_DECLS |