Commit 738d89970f2207889a7492067b1a13e5e4a08c91
1 parent
3ad74f34
Exists in
master
and in
1 other branch
Fixing warnings.
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); | ... | ... |