diff options
author | Ted Gould <ted@gould.cx> | 2010-01-14 09:54:59 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-14 09:54:59 -0600 |
commit | 2bfabeb52a894375a76be19cbd034ad56214b766 (patch) | |
tree | a53f0ce6923a4513c6d27ea32e3b33dd7f9950d8 /src/libappindicator | |
parent | 544ac3aa1cae817a4ec66fa4a880ba283298cabf (diff) | |
download | libayatana-appindicator-2bfabeb52a894375a76be19cbd034ad56214b766.tar.gz libayatana-appindicator-2bfabeb52a894375a76be19cbd034ad56214b766.tar.bz2 libayatana-appindicator-2bfabeb52a894375a76be19cbd034ad56214b766.zip |
Making a more descriptive error on 'unfallback' not existing.
Diffstat (limited to 'src/libappindicator')
-rw-r--r-- | src/libappindicator/app-indicator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libappindicator/app-indicator.c b/src/libappindicator/app-indicator.c index 40c7c3e..c3bce35 100644 --- a/src/libappindicator/app-indicator.c +++ b/src/libappindicator/app-indicator.c @@ -736,7 +736,7 @@ fallback_timer_expire (gpointer data) class->unfallback(APP_INDICATOR(data), priv->status_icon); priv->status_icon = NULL; } else { - g_warning("Can't 'unfallback' and I have an allocated status_icon. Might be a memory leak!"); + g_warning("No 'unfallback' function but the 'fallback' function returned a non-NULL result."); } } |