From 4cbdf4bd6d261e9a6a4f3b86411983ba1a89ef48 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 11 Mar 2013 20:36:55 +0000 Subject: misprint git-svn-id: http://svn.miranda-ng.org/main/trunk@3978 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SMS/src/functions.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'plugins/SMS/src') diff --git a/plugins/SMS/src/functions.cpp b/plugins/SMS/src/functions.cpp index 4476c40806..157b85d78f 100644 --- a/plugins/SMS/src/functions.cpp +++ b/plugins/SMS/src/functions.cpp @@ -609,13 +609,12 @@ void LoadMsgDlgFont(int i,LOGFONT *lf,COLORREF *colour) LRESULT CALLBACK MessageSubclassProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam) { - LRESULT lrRet=0; - - switch(message){ - case WM_CHAR: - if (wParam=='\n' && GetKeyState(VK_CONTROL)&0x8000) - PostMessage(GetParent(hwnd),WM_COMMAND,IDOK,0); - return 0; + switch(message) { + case WM_CHAR: + if (wParam == '\n' && GetKeyState(VK_CONTROL) & 0x8000) { + PostMessage(GetParent(hwnd), WM_COMMAND, IDOK, 0); + return 0; + } } return mir_callNextSubclass(hwnd, MessageSubclassProc, message, wParam, lParam); -- cgit v1.2.3