diff options
author | Ted Gould <ted@canonical.com> | 2009-04-13 11:31:28 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-04-13 11:31:28 -0500 |
commit | cb60d3fd9dc8a771259fcfedaa9c5eae16c6fb0f (patch) | |
tree | 387e69034a54444bff2ab71a2b3314db579c9460 /libindicate/listener.c | |
parent | 61ded01cab0cb01d539f22b3aa865bb58d9a1f8c (diff) | |
parent | 70223e1d54fab55b322a216073f5f2a74e02ffc8 (diff) | |
download | libayatana-indicator-cb60d3fd9dc8a771259fcfedaa9c5eae16c6fb0f.tar.gz libayatana-indicator-cb60d3fd9dc8a771259fcfedaa9c5eae16c6fb0f.tar.bz2 libayatana-indicator-cb60d3fd9dc8a771259fcfedaa9c5eae16c6fb0f.zip |
* New upstream version
* Applied the same fixes as Cody Russell's patch to indicator-messages
to the finalize functions here. Should fix LP: #359018 completely.
* Minor warnings fixes in search of solution to above.
Diffstat (limited to 'libindicate/listener.c')
-rw-r--r-- | libindicate/listener.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libindicate/listener.c b/libindicate/listener.c index 381a5f9..3cc84b6 100644 --- a/libindicate/listener.c +++ b/libindicate/listener.c @@ -272,8 +272,9 @@ indicate_listener_init (IndicateListener * listener) static void indicate_listener_finalize (GObject * obj) { - IndicateListener * listener = INDICATE_LISTENER(obj); + /* IndicateListener * listener = INDICATE_LISTENER(obj); */ + G_OBJECT_CLASS (indicate_listener_parent_class)->finalize (obj); return; } @@ -833,7 +834,7 @@ gboolean _indicate_listener_get_indicator_servers (IndicateListener * listener, GList * servers) { - + return TRUE; } static void |