Commit 2f131313a9d87feff75b2b09e4d07b259abf1a72
1 parent
3d6f9f7b
Exists in
master
and in
5 other branches
Faltou registrar a propriedade luname
Showing
1 changed file
with
7 additions
and
0 deletions
Show diff stats
src/pw3270/v3270/properties.c
| ... | ... | @@ -122,6 +122,13 @@ |
| 122 | 122 | FALSE,G_PARAM_READABLE|G_PARAM_WRITABLE); |
| 123 | 123 | g_object_class_install_property(gobject_class,PROP_MODEL,v3270_properties[PROP_MODEL]); |
| 124 | 124 | |
| 125 | + v3270_properties[PROP_LUNAME] = g_param_spec_string( | |
| 126 | + "luname", | |
| 127 | + "luname", | |
| 128 | + "The logical Unit (LU) name", | |
| 129 | + FALSE,G_PARAM_READABLE|G_PARAM_WRITABLE); | |
| 130 | + g_object_class_install_property(gobject_class,PROP_LUNAME,v3270_properties[PROP_LUNAME]); | |
| 131 | + | |
| 125 | 132 | // Toggle properties |
| 126 | 133 | int f; |
| 127 | 134 | ... | ... |