aboutsummaryrefslogtreecommitdiff
path: root/libsylph/prefs_common.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-11-10 09:54:41 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-11-10 09:54:41 +0000
commite758fbd16ba10ed51175341e61f9d710de1a1917 (patch)
tree2c77016e463b74f6b52415214def81c707b170fa /libsylph/prefs_common.c
parent0b73715dd9b3033f2ce4e8698a5a1968a9e87646 (diff)
don't show gpg warning on win32 by default.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@735 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/prefs_common.c')
-rw-r--r--libsylph/prefs_common.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libsylph/prefs_common.c b/libsylph/prefs_common.c
index 9e53a98f..73c21817 100644
--- a/libsylph/prefs_common.c
+++ b/libsylph/prefs_common.c
@@ -292,7 +292,11 @@ static PrefParam param[] = {
{"store_passphrase_timeout", "0",
&prefs_common.store_passphrase_timeout, P_INT},
{"passphrase_grab", "FALSE", &prefs_common.passphrase_grab, P_BOOL},
- {"gpg_warning", "TRUE", &prefs_common.gpg_warning, P_BOOL},
+#ifdef G_OS_WIN32
+ {"show_gpg_warning", "FALSE", &prefs_common.gpg_warning, P_BOOL},
+#else
+ {"show_gpg_warning", "TRUE", &prefs_common.gpg_warning, P_BOOL},
+#endif
/* Interface */
{"separate_folder", "FALSE", &prefs_common.sep_folder, P_BOOL},