diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-04-14 21:04:03 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-04-14 21:04:03 +0800 |
commit | d6ca198aee8a30d691dfe38d2d86fcf7ee5ab327 (patch) | |
tree | c28cedec30942cff5eb9684d6a33152213840d15 /widgets/misc/e-attachment-bar.c | |
parent | 0a53b0ce0a5b41b64095a73037c86101279414ca (diff) | |
download | gsoc2013-evolution-d6ca198aee8a30d691dfe38d2d86fcf7ee5ab327.tar.gz gsoc2013-evolution-d6ca198aee8a30d691dfe38d2d86fcf7ee5ab327.tar.zst gsoc2013-evolution-d6ca198aee8a30d691dfe38d2d86fcf7ee5ab327.zip |
Remove some unused variables.
2008-04-14 Matthew Barnes <mbarnes@redhat.com>
* composer/e-composer-autosave.c (e_composer_autosave_unregister):
Remove some unused variables.
* widgets/misc/e-attachment-bar.c
(e_attachment_bar_bonobo_ui_populate_with_recent):
Fix a compiler warning.
svn path=/trunk/; revision=35365
Diffstat (limited to 'widgets/misc/e-attachment-bar.c')
-rw-r--r-- | widgets/misc/e-attachment-bar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-attachment-bar.c b/widgets/misc/e-attachment-bar.c index 2e31810f32..ac25f628dd 100644 --- a/widgets/misc/e-attachment-bar.c +++ b/widgets/misc/e-attachment-bar.c @@ -1291,7 +1291,7 @@ e_attachment_bar_bonobo_ui_populate_with_recent (BonoboUIComponent *uic, const c } *d = '\0'; } else - display_name = info_dn; + display_name = (char *) info_dn; /* Add menu item */ label = g_strdup (display_name); |