X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=blobdiff_plain;f=src%2Ftoolbar.c;h=b48b804f2608c0074d73137decda561881264184;hp=13d58ed455f726e4e85e1b4423190f06857b92df;hb=884055d3bd0e34da2ea6d74705ed5c2a0e9ef0a2;hpb=4b9f6e2b6316a1efff97dc3f41836cfeeb04e220 diff --git a/src/toolbar.c b/src/toolbar.c index 13d58ed45..b48b804f2 100644 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -1624,7 +1624,7 @@ static void toolbar_all_read_cb(GtkWidget *widget, gpointer data) switch (toolbar_item->type) { case TOOLBAR_MAIN: mainwin = (MainWindow *) toolbar_item->parent; - summary_mark_all_read(mainwin->summaryview, TRUE); + summary_mark_all_read(mainwin->summaryview); break; case TOOLBAR_MSGVIEW: /* TODO: see toolbar_next_unread_cb() if you need @@ -1646,7 +1646,7 @@ static void toolbar_all_unread_cb(GtkWidget *widget, gpointer data) switch (toolbar_item->type) { case TOOLBAR_MAIN: mainwin = (MainWindow *) toolbar_item->parent; - summary_mark_all_read(mainwin->summaryview, FALSE); + summary_mark_all_unread(mainwin->summaryview); break; case TOOLBAR_MSGVIEW: /* TODO: see toolbar_next_unread_cb() if you need @@ -1668,7 +1668,7 @@ static void toolbar_read_cb(GtkWidget *widget, gpointer data) switch (toolbar_item->type) { case TOOLBAR_MAIN: mainwin = (MainWindow *) toolbar_item->parent; - summary_mark_as_read(mainwin->summaryview, TRUE); + summary_mark_as_read(mainwin->summaryview); break; case TOOLBAR_MSGVIEW: /* TODO: see toolbar_next_unread_cb() if you need @@ -1690,7 +1690,7 @@ static void toolbar_unread_cb(GtkWidget *widget, gpointer data) switch (toolbar_item->type) { case TOOLBAR_MAIN: mainwin = (MainWindow *) toolbar_item->parent; - summary_mark_as_read(mainwin->summaryview, FALSE); + summary_mark_as_unread(mainwin->summaryview); break; case TOOLBAR_MSGVIEW: /* TODO: see toolbar_next_unread_cb() if you need