Commit 4a6475a4c82288a85d1f0224f0667c509507dcf3
1 parent
8d69fd40
Exists in
master
and in
1 other branch
Corrigindo propriedade errada no widget do terminal
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
properties.c
... | ... | @@ -145,7 +145,7 @@ |
145 | 145 | "auto_disconnect", |
146 | 146 | "Minutes to disconnect when idle", |
147 | 147 | FALSE,G_PARAM_READABLE|G_PARAM_WRITABLE); |
148 | - g_object_class_install_property(gobject_class,PROP_LUNAME,v3270_properties[PROP_LUNAME]); | |
148 | + g_object_class_install_property(gobject_class,PROP_AUTO_DISCONNECT,v3270_properties[PROP_AUTO_DISCONNECT]); | |
149 | 149 | |
150 | 150 | // Toggle properties |
151 | 151 | int f; |
... | ... | @@ -155,6 +155,7 @@ |
155 | 155 | v3270_properties[PROP_TOGGLE+f] = g_param_spec_boolean(lib3270_get_toggle_name(f),lib3270_get_toggle_name(f),lib3270_get_toggle_description(f),FALSE,G_PARAM_WRITABLE|G_PARAM_READABLE); |
156 | 156 | g_object_class_install_property(gobject_class,PROP_TOGGLE+f,v3270_properties[PROP_TOGGLE+f]); |
157 | 157 | } |
158 | + debug("%s",__FUNCTION__); | |
158 | 159 | } |
159 | 160 | |
160 | 161 | LIB3270_EXPORT void v3270_set_auto_disconnect(GtkWidget *widget, guint minutes) | ... | ... |