Commit dcfeb0d23a8c4bd48b01924c1396751bd1629482
Exists in
master
and in
1 other branch
Merge branch 'master' into fix_print_segfault
Showing
2 changed files
with
2 additions
and
1 deletions
Show diff stats
src/terminal/properties/get.c
src/trace/text.c
... | ... | @@ -71,7 +71,7 @@ |
71 | 71 | |
72 | 72 | // Enqueue update. |
73 | 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 | 75 | strcpy(cfg->text,text); |
76 | 76 | |
77 | 77 | g_idle_add_full(G_PRIORITY_DEFAULT_IDLE,(GSourceFunc) bg_append_text, cfg, g_free); | ... | ... |