Plugin.host should be a public property.

This commit is contained in:
Kolan Sh 2014-10-30 15:38:03 +03:00
parent 285c0d44e0
commit 1d505afe4c
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ namespace GObject {
/** /**
* Host Interface. * Host Interface.
*/ */
public IHost host = null; public IHost host { get; set; default = null; }
} }
} }
} }