diff options
Diffstat (limited to 'options.cpp')
-rw-r--r-- | options.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/options.cpp b/options.cpp index 15dffb5..7061f39 100644 --- a/options.cpp +++ b/options.cpp @@ -207,7 +207,7 @@ static BOOL CALLBACK DlgProcGpgOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARA bool ismetacontact = false; HANDLE meta = NULL; HANDLE hContact = user_data[item_num+1]; - if(isProtoMetaContacts(hContact)) + if(metaIsProtoMetaContacts(hContact)) { meta = hContact; hContact = metaGetMostOnline(hContact); @@ -601,7 +601,7 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP case WM_INITDIALOG: { HANDLE hcnt = hContact; - if(isProtoMetaContacts(hcnt)) + if(metaIsProtoMetaContacts(hcnt)) hcnt = metaGetMostOnline(hcnt); TranslateDialogDefault(hwndDlg); bool isContactSecured(HANDLE); @@ -747,7 +747,7 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP ws2 += _tcslen(end); bool allsubcontacts = false; { - if(isProtoMetaContacts(hContact)) + if(metaIsProtoMetaContacts(hContact)) { HANDLE hcnt = NULL; if(MessageBox(0, _T("Do you want load key for all subcontacts ?"), _T("Metacontact detected"), MB_YESNO) == IDYES) @@ -777,7 +777,7 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP DWORD exitcode; { HANDLE hcnt = hContact; - if(isProtoMetaContacts(hcnt)) + if(metaIsProtoMetaContacts(hcnt)) hcnt = metaGetMostOnline(hcnt); ptmp = UniGetContactSettingUtf(NULL, szGPGModuleName, "szHomePath", _T("")); _tcscpy(tmp2, ptmp); @@ -824,7 +824,7 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP mir_free(end); if(hContact) { - if(isProtoMetaContacts(hContact)) + if(metaIsProtoMetaContacts(hContact)) { HANDLE hcnt = NULL; if(allsubcontacts) @@ -858,7 +858,7 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP strcpy(tmp2, output.substr(s,s2-s).c_str()); mir_utf8decode(tmp2, 0); { - if(isProtoMetaContacts(hContact)) + if(metaIsProtoMetaContacts(hContact)) { HANDLE hcnt = NULL; if(allsubcontacts) @@ -899,7 +899,7 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP mir_utf8decode(tmp2, 0); if(hContact) { - if(isProtoMetaContacts(hContact)) + if(metaIsProtoMetaContacts(hContact)) { HANDLE hcnt = NULL; if(allsubcontacts) @@ -935,7 +935,7 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP mir_utf8decode(tmp2, 0); if(hContact) { - if(isProtoMetaContacts(hContact)) + if(metaIsProtoMetaContacts(hContact)) { HANDLE hcnt = NULL; if(allsubcontacts) @@ -962,7 +962,7 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP mir_utf8decode(tmp2, 0); if(hContact) { - if(isProtoMetaContacts(hContact)) + if(metaIsProtoMetaContacts(hContact)) { HANDLE hcnt = NULL; if(allsubcontacts) @@ -994,7 +994,7 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP mir_utf8decode(tmp2, 0); if(hContact) { - if(isProtoMetaContacts(hContact)) + if(metaIsProtoMetaContacts(hContact)) { HANDLE hcnt = NULL; if(allsubcontacts) @@ -1075,7 +1075,7 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP void setClistIcon(HANDLE); if(hContact) { - if(isProtoMetaContacts(hContact)) + if(metaIsProtoMetaContacts(hContact)) { HANDLE hcnt = NULL; if(allsubcontacts) |