diff options
author | George Hazan <george.hazan@gmail.com> | 2016-03-02 08:37:52 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-03-02 08:37:52 +0000 |
commit | 86afe40c9f5e7c97de33e6bda58038ca764e74e4 (patch) | |
tree | ab817e2dc074eccd85a514652153f719840d07c6 /plugins/Dbx_mdb/src/ui.cpp | |
parent | 557077718ec034e47e11556b99ce86424e6550a2 (diff) |
- 64-bit issues fixed;
- warning fixes;
git-svn-id: http://svn.miranda-ng.org/main/trunk@16386 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbx_mdb/src/ui.cpp')
-rw-r--r-- | plugins/Dbx_mdb/src/ui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dbx_mdb/src/ui.cpp b/plugins/Dbx_mdb/src/ui.cpp index 8c7ec8c52c..003b068a48 100644 --- a/plugins/Dbx_mdb/src/ui.cpp +++ b/plugins/Dbx_mdb/src/ui.cpp @@ -28,7 +28,7 @@ static HGENMENU hSetPwdMenu; static UINT oldLangID;
void LanguageChanged(HWND hwndDlg)
{
- UINT LangID = (UINT)GetKeyboardLayout(0);
+ UINT_PTR LangID = (UINT_PTR)GetKeyboardLayout(0);
char Lang[3] = { 0 };
if (LangID != oldLangID) {
oldLangID = LangID;
@@ -80,7 +80,7 @@ static INT_PTR CALLBACK sttChangePassword(HWND hwndDlg, UINT uMsg, WPARAM wParam if ((HWND)lParam == GetDlgItem(hwndDlg, IDC_LANG)) {
SetTextColor((HDC)wParam, GetSysColor(COLOR_HIGHLIGHTTEXT));
SetBkMode((HDC)wParam, TRANSPARENT);
- return (BOOL)GetSysColorBrush(COLOR_HIGHLIGHT);
+ return (INT_PTR)GetSysColorBrush(COLOR_HIGHLIGHT);
}
return FALSE;
|