Commit a5c615f2ed78282b2d1c868f9bf7242380e8ab2c
1 parent
a13c5fcc
Exists in
master
and in
3 other branches
Fixing build error after libv3270 update.
Showing
3 changed files
with
3 additions
and
3 deletions
Show diff stats
src/objects/actions/abstract.c
@@ -214,7 +214,7 @@ | @@ -214,7 +214,7 @@ | ||
214 | 214 | ||
215 | } | 215 | } |
216 | 216 | ||
217 | - void set_property(GObject G_GNUC_UNUSED(*object), guint G_GNUC_UNUSED(prop_id), const GValue G_GNUC_UNUSED(*value), GParamSpec *pspec) { | 217 | + void set_property(GObject G_GNUC_UNUSED(*object), guint G_GNUC_UNUSED(prop_id), const GValue G_GNUC_UNUSED(*value), GParamSpec G_GNUC_UNUSED(*pspec)) { |
218 | // g_message("Action %s property %s is read-only",g_action_get_name(G_ACTION(object)),pspec->name); | 218 | // g_message("Action %s property %s is read-only",g_action_get_name(G_ACTION(object)),pspec->name); |
219 | } | 219 | } |
220 | 220 |
src/objects/window/terminal.c
@@ -250,7 +250,7 @@ | @@ -250,7 +250,7 @@ | ||
250 | return FALSE; | 250 | return FALSE; |
251 | 251 | ||
252 | g_key_file_set_integer(session->key_file,"dialogs",popup_name,(gint) response); | 252 | g_key_file_set_integer(session->key_file,"dialogs",popup_name,(gint) response); |
253 | - v3270_emit_save_settings(widget); | 253 | + v3270_emit_save_settings(widget,NULL); |
254 | 254 | ||
255 | return TRUE; | 255 | return TRUE; |
256 | } | 256 | } |