diff options
author | fiaxh <git@mx.ax.lt> | 2018-09-04 13:48:33 +0200 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2018-09-04 13:48:33 +0200 |
commit | 79e0aee5fdb90830fad748fdfae717cb5fbf91f9 (patch) | |
tree | e3e800e7cea60cad48ffee3c7e46440f435d358a /xmpp-vala/src/module | |
parent | 69b886ef1e065d1c3373ac775111fcd1ea7cbbf9 (diff) | |
download | dino-79e0aee5fdb90830fad748fdfae717cb5fbf91f9.tar.gz dino-79e0aee5fdb90830fad748fdfae717cb5fbf91f9.zip |
Fix property with custom get+set to not have a default value (compiler error with vala 0.41)
Fix encryption icon not being shown right away
Diffstat (limited to 'xmpp-vala/src/module')
-rw-r--r-- | xmpp-vala/src/module/xep/0004_data_forms.vala | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/xmpp-vala/src/module/xep/0004_data_forms.vala b/xmpp-vala/src/module/xep/0004_data_forms.vala index cc0a1a28..9456197c 100644 --- a/xmpp-vala/src/module/xep/0004_data_forms.vala +++ b/xmpp-vala/src/module/xep/0004_data_forms.vala @@ -53,7 +53,6 @@ public class DataForm { public string? label { get { return node.get_attribute("label", NS_URI); } set { node.set_attribute("label", value); } - default = null; } public virtual Type? type_ { get; internal set; default=null; } public string? var { |