summaryrefslogtreecommitdiff
path: root/options.cpp
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2012-05-19 01:43:48 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2012-05-19 01:43:48 +0300
commit9026615fea720ca69d3a3480a69e32e5432db69b (patch)
tree10e18a6b7bce1427cb04dafd4a5772123c974050 /options.cpp
parentec0c325b00df0576ecf6f159e6ea4b6f72a13e49 (diff)
fixed one more metacontacts problem
added option to remove own tags in outgoing messages (useful to quote)
Diffstat (limited to 'options.cpp')
-rwxr-xr-xoptions.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/options.cpp b/options.cpp
index 45f56d5..8efc0c2 100755
--- a/options.cpp
+++ b/options.cpp
@@ -599,6 +599,7 @@ static BOOL CALLBACK DlgProcGpgMsgOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LP
{
TranslateDialogDefault(hwndDlg);
CheckStateLoadDB(hwndDlg, IDC_APPEND_TAGS, "bAppendTags", 0);
+ CheckStateLoadDB(hwndDlg, IDC_STRIP_TAGS, "bStripTags", 0);
{
TCHAR *tmp = UniGetContactSettingUtf(NULL, szGPGModuleName, "szInOpenTag", _T("<GPGdec>"));
SetDlgItemText(hwndDlg, IDC_IN_OPEN_TAG, tmp);
@@ -639,6 +640,7 @@ static BOOL CALLBACK DlgProcGpgMsgOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LP
case PSN_APPLY:
{
bAppendTags = CheckStateStoreDB(hwndDlg, IDC_APPEND_TAGS, "bAppendTags");
+ bStripTags = CheckStateStoreDB(hwndDlg, IDC_STRIP_TAGS, "bStripTags");
{
TCHAR tmp[128];
GetDlgItemText(hwndDlg, IDC_IN_OPEN_TAG, tmp, 128);