diff options
author | Rozhuk Ivan <rozhuk.im@gmail.com> | 2015-01-26 09:48:48 +0000 |
---|---|---|
committer | Rozhuk Ivan <rozhuk.im@gmail.com> | 2015-01-26 09:48:48 +0000 |
commit | 8af2738f3ce3fd91a7dbebbe9e747b441036bc08 (patch) | |
tree | 717feb81c722a5813f07b47022e059976d19e30c /plugins/SMS/src/senddlg.cpp | |
parent | 36b8a06647d56fa608244e2706cdb3c97087f00c (diff) |
SMS: fix x64
SendScreenShot: types changed
git-svn-id: http://svn.miranda-ng.org/main/trunk@11916 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SMS/src/senddlg.cpp')
-rw-r--r-- | plugins/SMS/src/senddlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SMS/src/senddlg.cpp b/plugins/SMS/src/senddlg.cpp index dc5713d17e..6f336ecdf9 100644 --- a/plugins/SMS/src/senddlg.cpp +++ b/plugins/SMS/src/senddlg.cpp @@ -240,7 +240,7 @@ INT_PTR CALLBACK SendSmsDlgProc(HWND hWndDlg,UINT message,WPARAM wParam,LPARAM l LoadMsgDlgFont(MSGFONTID_MESSAGEAREA,NULL,&colour);
SetTextColor((HDC)wParam,colour);
SetBkColor((HDC)wParam,db_get_dw(NULL,SRMMMOD,SRMSGSET_INPBKGCOLOUR,SRMSGDEFSET_BKGCOLOUR));
- return((BOOL)psswdWindowData->hBkgBrush);
+ return((INT_PTR)psswdWindowData->hBkgBrush);
}
break;
case DM_TIMEOUTDECIDED:
|