aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-04-14 21:04:03 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-04-14 21:04:03 +0800
commitd6ca198aee8a30d691dfe38d2d86fcf7ee5ab327 (patch)
treec28cedec30942cff5eb9684d6a33152213840d15 /widgets
parent0a53b0ce0a5b41b64095a73037c86101279414ca (diff)
downloadgsoc2013-evolution-d6ca198aee8a30d691dfe38d2d86fcf7ee5ab327.tar
gsoc2013-evolution-d6ca198aee8a30d691dfe38d2d86fcf7ee5ab327.tar.gz
gsoc2013-evolution-d6ca198aee8a30d691dfe38d2d86fcf7ee5ab327.tar.bz2
gsoc2013-evolution-d6ca198aee8a30d691dfe38d2d86fcf7ee5ab327.tar.lz
gsoc2013-evolution-d6ca198aee8a30d691dfe38d2d86fcf7ee5ab327.tar.xz
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')
-rw-r--r--widgets/misc/ChangeLog6
-rw-r--r--widgets/misc/e-attachment-bar.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index 20bd302337..dd708047a7 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,3 +1,9 @@
+2008-04-14 Matthew Barnes <mbarnes@redhat.com>
+
+ * e-attachment-bar.c
+ (e_attachment_bar_bonobo_ui_populate_with_recent):
+ Fix a compiler warning.
+
2008-04-11 Suman Manjunath <msuman@novell.com>
** Fix for bug #517134
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);