diff options
author | Ted Gould <ted@canonical.com> | 2009-02-11 20:32:31 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-02-11 20:32:31 -0600 |
commit | fe7b7c483347e7f6437978716e501de43c12a346 (patch) | |
tree | 4fd4b828fc2b91f4d72c9780d660001fa50f54d1 /libindicate/indicator.c | |
parent | 7e01f3aa1892aef74ac2d0a2323ffd277d29f35d (diff) | |
parent | 2f2fdfe9a4e312dde374e000a02dd61e8a40c608 (diff) | |
download | libayatana-indicator-fe7b7c483347e7f6437978716e501de43c12a346.tar.gz libayatana-indicator-fe7b7c483347e7f6437978716e501de43c12a346.tar.bz2 libayatana-indicator-fe7b7c483347e7f6437978716e501de43c12a346.zip |
Merging in the changes to make it so that properties work right, get
handled properly by the listener and have convience functions. Also
lots of little important cleanups.
Diffstat (limited to 'libindicate/indicator.c')
-rw-r--r-- | libindicate/indicator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libindicate/indicator.c b/libindicate/indicator.c index 71ce030..c6df80a 100644 --- a/libindicate/indicator.c +++ b/libindicate/indicator.c @@ -67,7 +67,7 @@ static GPtrArray * list_properties (IndicateIndicator * indicator); static void indicate_indicator_class_init (IndicateIndicatorClass * class) { - g_debug("Indicator Class Initialized."); + /* g_debug("Indicator Class Initialized."); */ GObjectClass * gobj; gobj = G_OBJECT_CLASS(class); @@ -116,7 +116,7 @@ indicate_indicator_class_init (IndicateIndicatorClass * class) static void indicate_indicator_init (IndicateIndicator * indicator) { - g_debug("Indicator Object Initialized."); + /* g_debug("Indicator Object Initialized."); */ IndicateIndicatorPrivate * priv = INDICATE_INDICATOR_GET_PRIVATE(indicator); priv->is_visible = FALSE; |