aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-11-29 06:39:33 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-11-29 06:39:33 +0000
commit4cc3707180ec49e18d83fd72c4f3eea541eb40ea (patch)
tree86fce2c6efd9e2adb0af876048f463cc53eb922d /src/summaryview.c
parente7f6d03d3475bb24aba9c850b04e06cd3027edb9 (diff)
added an option to use external program for printing.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1385 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/summaryview.c')
-rw-r--r--src/summaryview.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/summaryview.c b/src/summaryview.c
index fa1eb3f0..15829edd 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -3578,7 +3578,6 @@ void summary_print(SummaryView *summaryview)
const gchar *cmdline;
gchar *msg;
gboolean all_headers;
- gboolean use_print_cmd = FALSE;
if (gtk_tree_selection_count_selected_rows(summaryview->selection) == 0)
return;
@@ -3586,7 +3585,7 @@ void summary_print(SummaryView *summaryview)
all_headers = summaryview->messageview->textview->show_all_headers;
#if GTK_CHECK_VERSION(2, 10, 0)
- if (!use_print_cmd) {
+ if (!prefs_common.use_print_cmd) {
mlist = summary_get_selected_msg_list(summaryview);
printing_print_messages(mlist, all_headers);
g_slist_free(mlist);