diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-24 16:34:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-24 16:34:01 +0000 |
commit | e7763f7f3b14afd60864b983a309e504d1ffc560 (patch) | |
tree | 7e95651f30ec4f6f582735c4b9043ca3c1e78114 /plugins/Scriver/chat/window.cpp | |
parent | cff526fc610fe0166b59c25bcb7730b92b481480 (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@605 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/chat/window.cpp')
-rw-r--r-- | plugins/Scriver/chat/window.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/chat/window.cpp b/plugins/Scriver/chat/window.cpp index 0962503cd3..bf637ccb2b 100644 --- a/plugins/Scriver/chat/window.cpp +++ b/plugins/Scriver/chat/window.cpp @@ -345,7 +345,7 @@ static LRESULT CALLBACK MessageSubclassProc(HWND hwnd, UINT msg, WPARAM wParam, gt.flags = GT_DEFAULT;
SendMessage(hwnd, EM_GETTEXTEX, (WPARAM)>, (LPARAM)pszText);
- if(start > 1 && pszText[start-1] == ' ' && pszText[start-2] == ':') {
+ if (start > 1 && pszText[start-1] == ' ' && pszText[start-2] == ':') {
start--;
}
while ( start >0 && pszText[start-1] != ' ' && pszText[start-1] != 13 && pszText[start-1] != VK_TAB)
@@ -842,7 +842,7 @@ static void ProcessNickListHovering(HWND hwnd, int hoveredItem, POINT * pt, SESS ti.lpszText=NULL;
ui1 = SM_GetUserFromIndex(parentdat->ptszID, parentdat->pszModule, currentHovered);
- if(ui1) {
+ if (ui1) {
// /GetChatToolTipText
// wParam = roomID parentdat->ptszID
// lParam = userID ui1->pszUID
|