Commit 98dfac76815d50401dbfc0345e7f57aaef82a52b
1 parent
327d0802
Exists in
master
and in
1 other branch
Debuggando transferência de arquivos.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
mouse.c
@@ -71,11 +71,11 @@ static void single_click(v3270 *widget, int baddr) | @@ -71,11 +71,11 @@ static void single_click(v3270 *widget, int baddr) | ||
71 | { | 71 | { |
72 | case 0x00: | 72 | case 0x00: |
73 | // Unselected area, move cursor and remove selection | 73 | // Unselected area, move cursor and remove selection |
74 | - v3270_disable_updates(widget); | 74 | + v3270_disable_updates(GTK_WIDGET(widget)); |
75 | lib3270_set_cursor_address(widget->host,baddr); | 75 | lib3270_set_cursor_address(widget->host,baddr); |
76 | lib3270_unselect(widget->host); | 76 | lib3270_unselect(widget->host); |
77 | widget->selecting = 1; | 77 | widget->selecting = 1; |
78 | - v3270_enable_updates(widget); | 78 | + v3270_enable_updates(GTK_WIDGET(widget)); |
79 | break; | 79 | break; |
80 | 80 | ||
81 | 81 |