Commit dcfeb0d23a8c4bd48b01924c1396751bd1629482

Authored by Perry Werneck
2 parents 596b82c1 738d8997
Exists in master and in 1 other branch develop

Merge branch 'master' into fix_print_segfault

src/terminal/properties/get.c
@@ -28,6 +28,7 @@ @@ -28,6 +28,7 @@
28 */ 28 */
29 29
30 #include "private.h" 30 #include "private.h"
  31 + #include <v3270/trace.h>
31 32
32 /*--[ Implement ]------------------------------------------------------------------------------------*/ 33 /*--[ Implement ]------------------------------------------------------------------------------------*/
33 34
src/trace/text.c
@@ -71,7 +71,7 @@ @@ -71,7 +71,7 @@
71 71
72 // Enqueue update. 72 // Enqueue update.
73 struct _append_text * cfg = g_malloc0(sizeof(struct _append_text)+strlen(text)+1); 73 struct _append_text * cfg = g_malloc0(sizeof(struct _append_text)+strlen(text)+1);
74 - cfg->widget = GTK_V3270_TRACE(widget); 74 + cfg->widget = widget;
75 strcpy(cfg->text,text); 75 strcpy(cfg->text,text);
76 76
77 g_idle_add_full(G_PRIORITY_DEFAULT_IDLE,(GSourceFunc) bg_append_text, cfg, g_free); 77 g_idle_add_full(G_PRIORITY_DEFAULT_IDLE,(GSourceFunc) bg_append_text, cfg, g_free);