diff options
author | Jonathon Jongsma <jonathon@quotidian.org> | 2009-12-09 00:56:33 +0800 |
---|---|---|
committer | Jonathon Jongsma <jonathon@quotidian.org> | 2009-12-09 01:00:00 +0800 |
commit | 2fa4ec1334a90d22c9a54d150d6e4722be9bfe1c (patch) | |
tree | 0ed8a173410abe5dd37ee4e887e4ae62b80366aa /e-util/e-alert.c | |
parent | dd65b18ddf2f4e7fdc108b0ed147658c36103eea (diff) | |
download | gsoc2013-evolution-2fa4ec1334a90d22c9a54d150d6e4722be9bfe1c.tar.gz gsoc2013-evolution-2fa4ec1334a90d22c9a54d150d6e4722be9bfe1c.tar.zst gsoc2013-evolution-2fa4ec1334a90d22c9a54d150d6e4722be9bfe1c.zip |
rename e_alert_get_buttons -> e_alert_peek_buttons
Make it obvious that this does not need to be freed like the other things that
use get_* (e.g. e_alert_get_title)
Diffstat (limited to 'e-util/e-alert.c')
-rw-r--r-- | e-util/e-alert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-alert.c b/e-util/e-alert.c index b0e0449d81..ff8801ff9e 100644 --- a/e-util/e-alert.c +++ b/e-util/e-alert.c @@ -659,7 +659,7 @@ e_alert_get_scroll (EAlert *alert) } struct _e_alert_button * -e_alert_get_buttons (EAlert *alert) +e_alert_peek_buttons (EAlert *alert) { g_return_val_if_fail (alert && alert->priv && alert->priv->definition, NULL); return alert->priv->definition->buttons; |