aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-task-bar.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-08-08 17:23:34 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-08-08 17:23:34 +0800
commit3f704068b669debd2e5cedc9136d2196771b1e04 (patch)
tree14edf6a1789db51ada385a9cfc3c95c8e2816a4d /shell/e-task-bar.c
parent6354feb6d77b6f59162d2142a815fd5242fa227f (diff)
downloadgsoc2013-evolution-3f704068b669debd2e5cedc9136d2196771b1e04.tar
gsoc2013-evolution-3f704068b669debd2e5cedc9136d2196771b1e04.tar.gz
gsoc2013-evolution-3f704068b669debd2e5cedc9136d2196771b1e04.tar.bz2
gsoc2013-evolution-3f704068b669debd2e5cedc9136d2196771b1e04.tar.lz
gsoc2013-evolution-3f704068b669debd2e5cedc9136d2196771b1e04.tar.xz
gsoc2013-evolution-3f704068b669debd2e5cedc9136d2196771b1e04.tar.zst
gsoc2013-evolution-3f704068b669debd2e5cedc9136d2196771b1e04.zip
Sigh. If the function says "prepend", of course the function to call is
* e-task-bar.c (e_task_bar_prepend_task): Sigh. If the function says "prepend", of course the function to call is `g_list_prepend()', not `g_list_append()'. You dumbass. svn path=/trunk/; revision=11771
Diffstat (limited to 'shell/e-task-bar.c')
-rw-r--r--shell/e-task-bar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-task-bar.c b/shell/e-task-bar.c
index f732d59a69..2c89b016f3 100644
--- a/shell/e-task-bar.c
+++ b/shell/e-task-bar.c
@@ -107,7 +107,7 @@ e_task_bar_prepend_task (ETaskBar *task_bar,
box = GTK_BOX (task_bar);
- box->children = g_list_append (box->children, child_info);
+ box->children = g_list_prepend (box->children, child_info);
gtk_widget_set_parent (GTK_WIDGET (task_widget), GTK_WIDGET (task_bar));