diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-05-22 19:49:01 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-05-22 19:49:01 +0000 |
commit | a89887eb202c99ce09107668561abce6704f9004 (patch) | |
tree | ad16b7333f033ee98f02d342ba70ae5fca8030b5 /protocols/IcqOscarJ/src/db.cpp | |
parent | 1eb922f8075c53a1a8487045b096693bd27b56dd (diff) |
more replacements
git-svn-id: http://svn.miranda-ng.org/main/trunk@13762 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ/src/db.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/db.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/IcqOscarJ/src/db.cpp b/protocols/IcqOscarJ/src/db.cpp index 4080b800ff..1d4254b52e 100644 --- a/protocols/IcqOscarJ/src/db.cpp +++ b/protocols/IcqOscarJ/src/db.cpp @@ -138,7 +138,7 @@ static INT_PTR CALLBACK PwConfirmDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, GetDlgItemTextA(hwndDlg, IDC_OLDPASS, szTest, SIZEOF(szTest));
- if (strcmpnull(szTest, dat->ppro->GetUserPassword(TRUE))) {
+ if (mir_strcmp(szTest, dat->ppro->GetUserPassword(TRUE))) {
MessageBox(hwndDlg, TranslateT("The password does not match your current password. Check Caps Lock and try again."), TranslateT("Change ICQ Details"), MB_OK);
SendDlgItemMessage(hwndDlg, IDC_OLDPASS, EM_SETSEL, 0, (LPARAM)-1);
SetFocus(GetDlgItem(hwndDlg, IDC_OLDPASS));
@@ -146,7 +146,7 @@ static INT_PTR CALLBACK PwConfirmDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, }
GetDlgItemTextA(hwndDlg, IDC_PASSWORD, szTest, SIZEOF(szTest));
- if (strcmpnull(szTest, dat->Pass)) {
+ if (mir_strcmp(szTest, dat->Pass)) {
MessageBox(hwndDlg, TranslateT("The password does not match the password you originally entered. Check Caps Lock and try again."), TranslateT("Change ICQ Details"), MB_OK);
SendDlgItemMessage(hwndDlg, IDC_PASSWORD, EM_SETSEL, 0, (LPARAM)-1);
SetFocus(GetDlgItem(hwndDlg, IDC_PASSWORD));
|