diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2012-01-26 00:37:14 -0500 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2012-01-26 00:37:14 -0500 |
commit | b3398715b2dcb0dd78fba5f5323e672d3677d730 (patch) | |
tree | af22df35ac53f975e5cce938d055e95f9b172e33 /libindicator | |
parent | a98a0b6e512e9082dfb90abc15e19d722d22dd71 (diff) | |
download | libayatana-indicator-0.4.90-0ubuntu4.tar.gz libayatana-indicator-0.4.90-0ubuntu4.tar.bz2 libayatana-indicator-0.4.90-0ubuntu4.zip |
releasing version 0.4.90-0ubuntu40.4.90-0ubuntu4
Diffstat (limited to 'libindicator')
-rw-r--r-- | libindicator/indicator-object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c index efecfb5..849fb9f 100644 --- a/libindicator/indicator-object.c +++ b/libindicator/indicator-object.c @@ -756,7 +756,7 @@ indicator_object_entry_being_removed (IndicatorObject * io, IndicatorObjectEntry g_return_if_fail(INDICATOR_IS_OBJECT(io)); IndicatorObjectClass * class = INDICATOR_OBJECT_GET_CLASS(io); - //entry_get_private (io, entry)->visibility = ENTRY_INVISIBLE; + entry_get_private (io, entry)->visibility = ENTRY_INVISIBLE; if (class->entry_being_removed != NULL) class->entry_being_removed (io, entry); @@ -768,7 +768,7 @@ indicator_object_entry_was_added (IndicatorObject * io, IndicatorObjectEntry * e g_return_if_fail(INDICATOR_IS_OBJECT(io)); IndicatorObjectClass * class = INDICATOR_OBJECT_GET_CLASS(io); - //entry_get_private (io, entry)->visibility = ENTRY_VISIBLE; + entry_get_private (io, entry)->visibility = ENTRY_VISIBLE; if (class->entry_was_added != NULL) class->entry_was_added (io, entry); |