From 167d383f8ef1b52ef42373125ebf3daf2ad84418 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Mon, 16 Jul 2012 17:56:50 +0000 Subject: PVS Studio warning: Cast from false to int --- nGenEx/Button.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nGenEx/Button.cpp') diff --git a/nGenEx/Button.cpp b/nGenEx/Button.cpp index c9cfcab..03c0dff 100644 --- a/nGenEx/Button.cpp +++ b/nGenEx/Button.cpp @@ -55,7 +55,7 @@ Button::Button(Screen* s, int ax, int ay, int aw, int ah, DWORD aid) drop_shadow = false; sticky = false; picture_loc = 1; - captured = 0; + captured = false; pre_state = 0; text_align = DT_CENTER; @@ -78,7 +78,7 @@ Button::Button(ActiveWindow* p, int ax, int ay, int aw, int ah, DWORD aid) drop_shadow = false; sticky = false; picture_loc = 1; - captured = 0; + captured = false; pre_state = 0; text_align = DT_CENTER; @@ -475,7 +475,7 @@ int Button::OnLButtonUp(int x, int y) { if (captured) { ReleaseCapture(); - captured = 0; + captured = false; } button_state = pre_state; -- cgit v1.1