aboutsummaryrefslogtreecommitdiff
path: root/example/simple-client-vala.c
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2012-02-06 14:52:41 -0500
committerKen VanDine <ken.vandine@canonical.com>2012-02-06 14:52:41 -0500
commit2c4628f0647760d314a70d227c88005aa4e89017 (patch)
tree9c83ede4648c8e7506c6f297f7997b8eefa4f036 /example/simple-client-vala.c
parent996677f97a04275f47fcc3c540ed7df5333677fe (diff)
parent0ef39fd36500773506b9571cc9475874850a35f1 (diff)
downloadlibayatana-appindicator-2c4628f0647760d314a70d227c88005aa4e89017.tar.gz
libayatana-appindicator-2c4628f0647760d314a70d227c88005aa4e89017.tar.bz2
libayatana-appindicator-2c4628f0647760d314a70d227c88005aa4e89017.zip
* New upstream release.
* Fix include with Dbusmenu 0.5.90 * Fix GTK3 include paths in pkgconfig file (LP: #869373) * Add title property (LP: #923971) * Don't specify pyglib-2.0-python2.6 in LDFLAGS * fix fallback icon of the GtkStatusIcon (LP: #820080) * debian/control: Dbusmneu Dep to 0.5.90 * deibna/*symbols: Updated to add [set|get]_title functions
Diffstat (limited to 'example/simple-client-vala.c')
-rw-r--r--example/simple-client-vala.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/example/simple-client-vala.c b/example/simple-client-vala.c
index 08306c3..0555913 100644
--- a/example/simple-client-vala.c
+++ b/example/simple-client-vala.c
@@ -1,4 +1,4 @@
-/* simple-client-vala.c generated by valac 0.14.0, the Vala compiler
+/* simple-client-vala.c generated by valac 0.14.1, the Vala compiler
* generated from simple-client-vala.vala, do not modify */
/*
@@ -174,6 +174,7 @@ SimpleClient* simple_client_construct (GType object_type, gchar** args, int args
AppIndicator* _tmp1_;
AppIndicator* _tmp2_;
AppIndicator* _tmp3_;
+ AppIndicator* _tmp4_;
self = (SimpleClient*) g_type_create_instance (object_type);
gtk_init (&args_length1, &args);
_tmp0_ = app_indicator_new ("example-simple-client", "indicator-messages", APP_INDICATOR_CATEGORY_APPLICATION_STATUS);
@@ -185,6 +186,8 @@ SimpleClient* simple_client_construct (GType object_type, gchar** args, int args
app_indicator_set_attention_icon (_tmp2_, "indicator-messages-new");
_tmp3_ = self->priv->ci;
app_indicator_set_label (_tmp3_, "1%", "100%");
+ _tmp4_ = self->priv->ci;
+ app_indicator_set_title (_tmp4_, "Test Indicator (vala)");
self->priv->active = TRUE;
self->priv->can_haz_label = TRUE;
return self;