diff options
author | George Hazan <george.hazan@gmail.com> | 2014-11-10 17:19:12 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-11-10 17:19:12 +0000 |
commit | b43b7abf33f5b2ab480a85584df0e3ce8c76a8ca (patch) | |
tree | 98a2b9c9038974e76d40ffe7114bd7ea2df8290f /protocols/WhatsApp/src/dialogs.cpp | |
parent | 7ec4cc63fa1b31af0496ac934d001323519c838f (diff) |
much less crazy imlementaion of xml reader
git-svn-id: http://svn.miranda-ng.org/main/trunk@10945 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/dialogs.cpp')
-rw-r--r-- | protocols/WhatsApp/src/dialogs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/WhatsApp/src/dialogs.cpp b/protocols/WhatsApp/src/dialogs.cpp index 6973973578..9392737ecf 100644 --- a/protocols/WhatsApp/src/dialogs.cpp +++ b/protocols/WhatsApp/src/dialogs.cpp @@ -156,7 +156,7 @@ INT_PTR CALLBACK WhatsAppInputBoxProc(HWND hwndDlg, UINT message, WPARAM wparam, EnableWindow(GetDlgItem(hwndDlg, IDC_OK), len > 0);
return TRUE;
}
-
+
if (LOWORD(wparam) == IDC_OK) {
ib = reinterpret_cast<input_box*>(GetWindowLongPtr(hwndDlg, GWLP_USERDATA));
TCHAR* value = new TCHAR[ib->limit + 1];
@@ -173,7 +173,7 @@ INT_PTR CALLBACK WhatsAppInputBoxProc(HWND hwndDlg, UINT message, WPARAM wparam, delete ib;
return TRUE;
}
-
+
if (LOWORD(wparam) == IDC_CANCEL) {
EndDialog(hwndDlg, wparam);
ib = reinterpret_cast<input_box*>(GetWindowLongPtr(hwndDlg, GWLP_USERDATA));
|