summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-03-29 19:17:05 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-03-29 19:17:13 +0300
commit4f821578e14747bca6fb8d0e99ead0d12dd818e9 (patch)
tree6d12fba9f35abc51f204815d460aee9d963b070c /protocols
parentc7ecb1ba6a82ba869ce95927d549fe4f266ffff5 (diff)
fixes #780 (Scriver: All message log text is selected on keyboard focus)
Diffstat (limited to 'protocols')
-rw-r--r--protocols/JabberG/src/jabber_form.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_form.cpp b/protocols/JabberG/src/jabber_form.cpp
index 3508d9bb69..e9706e4c57 100644
--- a/protocols/JabberG/src/jabber_form.cpp
+++ b/protocols/JabberG/src/jabber_form.cpp
@@ -28,8 +28,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
static LRESULT CALLBACK JabberFormMultiLineWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg) {
- //case WM_GETDLGCODE:
- // return DLGC_WANTARROWS|DLGC_WANTCHARS|DLGC_HASSETSEL|DLGC_WANTALLKEYS;
case WM_KEYDOWN:
if (wParam == VK_TAB) {
SetFocus(GetNextDlgTabItem(GetParent(GetParent(hwnd)), hwnd, GetKeyState(VK_SHIFT) < 0 ? TRUE : FALSE));