diff options
author | George Hazan <george.hazan@gmail.com> | 2015-01-11 18:23:21 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-01-11 18:23:21 +0000 |
commit | 03e6b95c82701c5ba6a34a20cb09aac26c5be9c0 (patch) | |
tree | ae8ffe0883bdef3e5156de26497738de698ba901 | |
parent | 78cee590285371ff574a957801024bcb6e75040f (diff) |
we don't allow to insert junk into the entry field on file drop
git-svn-id: http://svn.miranda-ng.org/main/trunk@11831 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/TabSRMM/src/msgdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/msgdialog.cpp b/plugins/TabSRMM/src/msgdialog.cpp index cd0eb278fc..85fb3b2029 100644 --- a/plugins/TabSRMM/src/msgdialog.cpp +++ b/plugins/TabSRMM/src/msgdialog.cpp @@ -577,7 +577,7 @@ static LRESULT CALLBACK MessageEditSubclassProc(HWND hwnd, UINT msg, WPARAM wPar case WM_DROPFILES: SendMessage(hwndParent, WM_DROPFILES, (WPARAM)wParam, (LPARAM)lParam); - break; + return 0; case WM_CHAR: KbdState(mwdat, isShift, isCtrl, isAlt); |