Commit b4f05bc9 authored by Olivier Teulière's avatar Olivier Teulière

* modules/gui/skins/controls/checkbox.cpp: Fixed a stupid bug (a return

   value was always true...)
parent 88b30684
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* checkbox.cpp: Checkbox control * checkbox.cpp: Checkbox control
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 VideoLAN * Copyright (C) 2003 VideoLAN
* $Id: checkbox.cpp,v 1.7 2003/06/09 12:33:16 asmax Exp $ * $Id: checkbox.cpp,v 1.8 2003/07/26 14:04:33 ipkiss Exp $
* *
* Authors: Olivier Teulire <ipkiss@via.ecp.fr> * Authors: Olivier Teulire <ipkiss@via.ecp.fr>
* Emmanuel Puig <karibu@via.ecp.fr> * Emmanuel Puig <karibu@via.ecp.fr>
...@@ -324,7 +324,7 @@ bool ControlCheckBox::MouseMove( int x, int y, int button ) ...@@ -324,7 +324,7 @@ bool ControlCheckBox::MouseMove( int x, int y, int button )
CursorIn = false; CursorIn = false;
return true; return true;
} }
return true; return false:
} }
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
bool ControlCheckBox::MouseOver( int x, int y ) bool ControlCheckBox::MouseOver( int x, int y )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment