aboutsummaryrefslogtreecommitdiffstats
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
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
-rw-r--r--composer/ChangeLog5
-rw-r--r--composer/e-composer-autosave.c2
-rw-r--r--widgets/misc/ChangeLog6
-rw-r--r--widgets/misc/e-attachment-bar.c2
4 files changed, 12 insertions, 3 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 2a3d303a97..6fa47caa1f 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-14 Matthew Barnes <mbarnes@redhat.com>
+
+ * e-composer-autosave.c (e_composer_autosave_unregister):
+ Remove some unused variables.
+
2008-04-11 Suman Manjunath <msuman@novell.com>
** Fix for bug #517134
diff --git a/composer/e-composer-autosave.c b/composer/e-composer-autosave.c
index 23451685f3..f006f20a37 100644
--- a/composer/e-composer-autosave.c
+++ b/composer/e-composer-autosave.c
@@ -234,8 +234,6 @@ e_composer_autosave_unregister (EMsgComposer *composer,
gboolean delete_file)
{
AutosaveState *state;
- GtkWindow *parent;
- gboolean delete_autosave_file = FALSE;
g_return_if_fail (E_IS_MSG_COMPOSER (composer));
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);