diff options
author | Ted Gould <ted@canonical.com> | 2009-01-12 16:38:46 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-01-12 16:38:46 -0600 |
commit | 2dc2f266359d30841fa2970dba0265cb22556b89 (patch) | |
tree | 99c4ea90f561684db2ac98f41f857f5100709a31 /libindicate/indicator.c | |
parent | 3d55f9063f2ee1a1a472f5a7b0b4bfa4a798b1f9 (diff) | |
download | libayatana-indicator-2dc2f266359d30841fa2970dba0265cb22556b89.tar.gz libayatana-indicator-2dc2f266359d30841fa2970dba0265cb22556b89.tar.bz2 libayatana-indicator-2dc2f266359d30841fa2970dba0265cb22556b89.zip |
Clean up the signal handlers and fixing the call in the test function. Now we're to the point of showing the way I think things should be.
Diffstat (limited to 'libindicate/indicator.c')
-rw-r--r-- | libindicate/indicator.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libindicate/indicator.c b/libindicate/indicator.c index 43eac55..a319af2 100644 --- a/libindicate/indicator.c +++ b/libindicate/indicator.c @@ -21,6 +21,8 @@ static void indicate_indicator_finalize (GObject * object); static void indicate_indicator_class_init (IndicateIndicatorClass * class) { + g_debug("Indicator Class Initialized."); + GObjectClass * gobj; gobj = G_OBJECT_CLASS(class); @@ -54,6 +56,8 @@ indicate_indicator_class_init (IndicateIndicatorClass * class) static void indicate_indicator_init (IndicateIndicator * indicator) { + g_debug("Indicator Object Initialized."); + indicator->id = 0; indicator->server = indicate_server_ref_default(); @@ -88,12 +92,12 @@ indicate_indicator_show (IndicateIndicator * indicator) indicate_server_show(indicator->server); } - g_signal_emit(indicator, signals[SHOW], NULL, G_TYPE_NONE); + g_signal_emit(indicator, signals[SHOW], 0, TRUE); } void indicate_indicator_hide (IndicateIndicator * indicator) { - g_signal_emit(indicator, signals[HIDE], NULL, G_TYPE_NONE); + g_signal_emit(indicator, signals[HIDE], 0, TRUE); } |