Commit 26f769199ee5f57f0d7383555b4051fb1263833a
1 parent
ec7b6414
Exists in
master
and in
1 other branch
Faltou registrar a propriedade luname
Showing
1 changed file
with
7 additions
and
0 deletions
Show diff stats
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 | ... | ... |