aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-history.c
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2006-01-30 19:49:53 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2006-01-30 19:49:53 +0800
commit1e5de972e60c9e693a87c0c5e899c64f930d75cb (patch)
tree32acc9f294047102ec640b8252d136ca18685a27 /shell/e-history.c
parentfba1b81006ff538162950505a8349c9ef6a8c6a9 (diff)
downloadgsoc2013-evolution-1e5de972e60c9e693a87c0c5e899c64f930d75cb.tar
gsoc2013-evolution-1e5de972e60c9e693a87c0c5e899c64f930d75cb.tar.gz
gsoc2013-evolution-1e5de972e60c9e693a87c0c5e899c64f930d75cb.tar.bz2
gsoc2013-evolution-1e5de972e60c9e693a87c0c5e899c64f930d75cb.tar.lz
gsoc2013-evolution-1e5de972e60c9e693a87c0c5e899c64f930d75cb.tar.xz
gsoc2013-evolution-1e5de972e60c9e693a87c0c5e899c64f930d75cb.tar.zst
gsoc2013-evolution-1e5de972e60c9e693a87c0c5e899c64f930d75cb.zip
Remove unused code and fix format specifiers in some cases.
2006-01-29 Kjartan Maraas <kmaraas@gnome.org> * e-corba-config-page.c: (e_corba_config_page_class_init): * e-shell-folder-title-bar.c: (e_shell_folder_title_bar_construct): * e-shell-window.c: (init_view): * e-shell.c: (detect_version), (e_shell_construct), (e_shell_new), (e_shell_attempt_upgrade), (e_shell_create_window), (e_shell_save_settings): * main.c: (idle_cb): Remove unused code and fix format specifiers in some cases. svn path=/trunk/; revision=31367
Diffstat (limited to 'shell/e-history.c')
-rw-r--r--shell/e-history.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-history.c b/shell/e-history.c
index ff4755bb8d..e279fb81bc 100644
--- a/shell/e-history.c
+++ b/shell/e-history.c
@@ -226,7 +226,7 @@ e_history_add (EHistory *history,
priv->current_item->next = NULL;
}
- g_list_append (priv->current_item, data);
+ priv->current_item = g_list_append (priv->current_item, data);
priv->current_item = priv->current_item->next;
}