Commit 526ed5001b07548d6fbaff1a803e4033025d60aa

Authored by Perry Werneck
1 parent 77b3b549
Exists in master and in 1 other branch develop

Fixing segfaults on cleanup

Delaying signals to avoid thread problems.
Showing 1 changed file with 0 additions and 4 deletions   Show diff stats
src/v3270/widget.c
@@ -1037,11 +1037,7 @@ void v3270_clear_clipboard(v3270 *terminal) @@ -1037,11 +1037,7 @@ void v3270_clear_clipboard(v3270 *terminal)
1037 terminal->selection.text = lib3270_free(terminal->selection.text); 1037 terminal->selection.text = lib3270_free(terminal->selection.text);
1038 } 1038 }
1039 1039
1040 -#if GTK_CHECK_VERSION(3,0,0)  
1041 static void v3270_destroy(GtkWidget *widget) 1040 static void v3270_destroy(GtkWidget *widget)
1042 -#else  
1043 -static void v3270_destroy(GtkObject *widget)  
1044 -#endif  
1045 { 1041 {
1046 v3270 * terminal = GTK_V3270(widget); 1042 v3270 * terminal = GTK_V3270(widget);
1047 1043