aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-05 06:45:34 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-05 06:45:34 +0000
commitfa466fd5e1e6b481f6249979cfb7397caa875f5c (patch)
treed26111cc73dba81cd7c684f4528695bfcf16ee53 /src/mainwindow.c
parent02a672d5bfa50cad8ab5cb047125c708c68176ab (diff)
moved procmsg.c::procmsg_send_queue() to send_message.c::send_message_queue_all().
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@545 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/mainwindow.c')
-rw-r--r--src/mainwindow.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c
index 169ae208..92c79be0 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -61,6 +61,7 @@
#include "inc.h"
#include "compose.h"
#include "procmsg.h"
+#include "send_message.h"
#include "import.h"
#include "export.h"
#include "prefs_common.h"
@@ -2869,9 +2870,9 @@ static void send_queue_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
if (folder->queue) {
gint ret;
- ret = procmsg_send_queue(folder->queue,
- prefs_common.savemsg,
- prefs_common.filter_sent);
+ ret = send_message_queue_all(folder->queue,
+ prefs_common.savemsg,
+ prefs_common.filter_sent);
statusbar_pop_all();
if (ret > 0)
folder_item_scan(folder->queue);