From 79e0aee5fdb90830fad748fdfae717cb5fbf91f9 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Tue, 4 Sep 2018 13:48:33 +0200 Subject: 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 --- xmpp-vala/src/module/xep/0004_data_forms.vala | 1 - 1 file changed, 1 deletion(-) (limited to 'xmpp-vala') 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 { -- cgit v1.2.3-54-g00ecf