summaryrefslogtreecommitdiff
path: root/options.cpp
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2012-06-02 08:58:30 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2012-06-02 08:58:30 +0300
commitdd580e5cae07351821fa52c24fe7ac254bc8004f (patch)
tree871f066ffddef10b017c71c214a3757872de458d /options.cpp
parent75dbad3f16853a91e2176bc5b5337206b7856d88 (diff)
typo fixes
Diffstat (limited to 'options.cpp')
-rwxr-xr-xoptions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/options.cpp b/options.cpp
index 2b8fce1..c91f30f 100755
--- a/options.cpp
+++ b/options.cpp
@@ -208,7 +208,7 @@ static BOOL CALLBACK DlgProcGpgOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARA
}
if(bIsMiranda09)
CheckStateLoadDB(hwndDlg, IDC_JABBER_API, "bJabberAPI", 1);
- CheckStateLoadDB(hwndDlg, IDC_FILE_TRANSFERS, "bFileTransfers", 1);
+ CheckStateLoadDB(hwndDlg, IDC_FILE_TRANSFERS, "bFileTransfers", 0);
CheckStateLoadDB(hwndDlg, IDC_AUTO_EXCHANGE, "bAutoExchange", 0);
return TRUE;
}
@@ -704,7 +704,7 @@ static BOOL CALLBACK DlgProcGpgAdvOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LP
{
extern bool bJabberAPI;
TranslateDialogDefault(hwndDlg);
- CheckStateLoadDB(hwndDlg, IDC_PRESCENSE_SUBSCRIPTION, "bPrescenseSubscription", 1);
+ CheckStateLoadDB(hwndDlg, IDC_PRESCENSE_SUBSCRIPTION, "bPresenceSigning", 0);
EnableWindow(GetDlgItem(hwndDlg, IDC_PRESCENSE_SUBSCRIPTION), bJabberAPI);
return TRUE;
@@ -724,7 +724,7 @@ static BOOL CALLBACK DlgProcGpgAdvOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LP
case PSN_APPLY:
{
- bPrescenseSubscription = CheckStateStoreDB(hwndDlg, IDC_PRESCENSE_SUBSCRIPTION, "bPrescenseSubscription");
+ bPresenceSigning = CheckStateStoreDB(hwndDlg, IDC_PRESCENSE_SUBSCRIPTION, "bPresenceSigning");
return TRUE;
}
}