diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-09-05 06:45:34 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-09-05 06:45:34 +0000 |
commit | fa466fd5e1e6b481f6249979cfb7397caa875f5c (patch) | |
tree | d26111cc73dba81cd7c684f4528695bfcf16ee53 /src/main.c | |
parent | 02a672d5bfa50cad8ab5cb047125c708c68176ab (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/main.c')
-rw-r--r-- | src/main.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -62,6 +62,7 @@ #include "account_dialog.h" #include "procmsg.h" #include "filter.h" +#include "send_message.h" #include "inc.h" #include "import.h" #include "manage_window.h" @@ -907,9 +908,9 @@ static void send_queue(void) 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); |