diff options
author | Ted Gould <ted@gould.cx> | 2010-12-07 16:55:03 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-12-07 16:55:03 -0600 |
commit | eef3316d7af6189f54022b1159331175cae900c4 (patch) | |
tree | ea465f3e74da81adc35322b5cef4e0544d17b628 /bindings | |
parent | 5ffa1850a8aefb9591309c6f884411543dd1fe04 (diff) | |
parent | 0a09bca306de781117fb92b1084dfafc6c267679 (diff) | |
download | ayatana-indicator-application-eef3316d7af6189f54022b1159331175cae900c4.tar.gz ayatana-indicator-application-eef3316d7af6189f54022b1159331175cae900c4.tar.bz2 ayatana-indicator-application-eef3316d7af6189f54022b1159331175cae900c4.zip |
Update to newest g-ir-scanner and vapigen
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/mono/examples/IndicatorExample.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bindings/mono/examples/IndicatorExample.cs b/bindings/mono/examples/IndicatorExample.cs index c34e020..c18a665 100644 --- a/bindings/mono/examples/IndicatorExample.cs +++ b/bindings/mono/examples/IndicatorExample.cs @@ -34,8 +34,8 @@ public class IndicatorExample win.Add (label); - ApplicationIndicator indicator = new ApplicationIndicator ("my-id", - "my-name", + ApplicationIndicator indicator = new ApplicationIndicator ("Example", + "applications-microblogging-panel", Category.ApplicationStatus); indicator.Status = Status.Attention; @@ -45,6 +45,7 @@ public class IndicatorExample menu.Append (new MenuItem ("Bar")); indicator.Menu = menu; + indicator.Menu.ShowAll (); win.ShowAll (); |