2008-09-28 Jürg Billeter <j@bitron.ch>
* vala/valainterfacewriter.vala:
Support static properties, patch by Ali Sabil
svn path=/trunk/; revision=1805
+2008-09-28 Jürg Billeter <j@bitron.ch>
+
+ * vala/valainterfacewriter.vala:
+
+ Support static properties, patch by Ali Sabil
+
2008-09-27 Jürg Billeter <j@bitron.ch>
* vapi/packages/gio-2.0/:
write_indent ();
write_accessibility (prop);
- if (prop.is_abstract) {
+ if (prop.binding == MemberBinding.STATIC) {
+ write_string ("static ");
+ } else if (prop.is_abstract) {
write_string ("abstract ");
} else if (prop.is_virtual) {
write_string ("virtual ");