diff options
author | Ted Gould <ted@canonical.com> | 2009-01-29 13:39:31 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-01-29 13:39:31 -0600 |
commit | 17bc0dab5a61d41e1a57755f7b2d1cdbe79e90da (patch) | |
tree | 76b90fa38c10ef625c86d2bf88bc10dd2014ccae /tests/im-client.c | |
parent | b6c14253a035bdf06b1b84a1a6ccd04e87ae23b5 (diff) | |
parent | de80300e02efb93d3cf4bd06733dd8c691451de6 (diff) | |
download | libayatana-indicator-17bc0dab5a61d41e1a57755f7b2d1cdbe79e90da.tar.gz libayatana-indicator-17bc0dab5a61d41e1a57755f7b2d1cdbe79e90da.tar.bz2 libayatana-indicator-17bc0dab5a61d41e1a57755f7b2d1cdbe79e90da.zip |
* Fixing the handling of named DBus connections
* Moving most of the data in the objects to private sections
* Making the signal names defines for easier usage
* Having property changes actually work now.
Diffstat (limited to 'tests/im-client.c')
-rw-r--r-- | tests/im-client.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/im-client.c b/tests/im-client.c index cdf3484..43635f0 100644 --- a/tests/im-client.c +++ b/tests/im-client.c @@ -13,7 +13,9 @@ main (int argc, char ** argv) indicate_indicator_set_property(INDICATE_INDICATOR(indicator), "subtype", "im"); indicate_indicator_set_property(INDICATE_INDICATOR(indicator), "sender", "Ted Gould"); indicate_indicator_set_property(INDICATE_INDICATOR(indicator), "time", "11:11"); - indicate_indicator_show(indicator); + indicate_indicator_show(INDICATE_INDICATOR(indicator)); + + indicate_indicator_set_property(INDICATE_INDICATOR(indicator), "time", "11:12"); g_main_loop_run(g_main_loop_new(NULL, FALSE)); |