Module: wine Branch: master Commit: 5dfe1b0cfea7a85b3b059a49253dfec02db657e8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5dfe1b0cfea7a85b3b059a4925...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Sat Nov 9 11:03:39 2013 +0100
comctl32: Use BOOL type where appropriate.
---
dlls/comctl32/toolbar.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/comctl32/toolbar.c b/dlls/comctl32/toolbar.c index f6ddb42..0c9714d 100644 --- a/dlls/comctl32/toolbar.c +++ b/dlls/comctl32/toolbar.c @@ -94,8 +94,8 @@ typedef struct INT idCommand; BYTE fsState; BYTE fsStyle; - BYTE bHot; - BYTE bDropDownPressed; + BOOL bHot; + BOOL bDropDownPressed; DWORD_PTR dwData; INT_PTR iString; INT nRow;