diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2012-10-11 12:33:35 +1300 |
---|---|---|
committer | Robert Ancell <robert.ancell@canonical.com> | 2012-10-11 12:33:35 +1300 |
commit | 26b796b2338912270191e6fe6e4c4b578bbd23f3 (patch) | |
tree | f7d3887dc46411d0fbdae00af465fd527e8d886e /bindings/vala | |
parent | f2744fa7a2ec60767c0fa4b4e358dac86a867ad1 (diff) | |
download | libayatana-appindicator-26b796b2338912270191e6fe6e4c4b578bbd23f3.tar.gz libayatana-appindicator-26b796b2338912270191e6fe6e4c4b578bbd23f3.tar.bz2 libayatana-appindicator-26b796b2338912270191e6fe6e4c4b578bbd23f3.zip |
Fix Vala classes not being able to inherit from Indicator
Diffstat (limited to 'bindings/vala')
-rw-r--r-- | bindings/vala/appindicator-0.1-custom.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/vala/appindicator-0.1-custom.vala b/bindings/vala/appindicator-0.1-custom.vala index 96152a2..9fa51eb 100644 --- a/bindings/vala/appindicator-0.1-custom.vala +++ b/bindings/vala/appindicator-0.1-custom.vala @@ -23,7 +23,7 @@ */ namespace AppIndicator { - [CCode (type_check_function = "IS_APP_INDICATOR")] + [CCode (type_check_function = "IS_APP_INDICATOR", type_id = "app_indicator_get_type ()")] public class Indicator : GLib.Object { } } |