Page 1 of 1

Small doc issue

Posted: Fri May 30, 2008 14:30
by alphasnd
The 'MouseButton' enumeration doc only constains 'NoButton', where the real enum is the following (doxygen issue ?):

Code: Select all

/*!
/brief
   Enumeration of mouse buttons
*/
enum MouseButton
{
   LeftButton,
   RightButton,
   MiddleButton,
   X1Button,
   X2Button,
   MouseButtonCount,      //<! Dummy value that is == to the maximum number of mouse buttons supported.
   NoButton            //!< Value set for no mouse button.  NB: This is not 0, do not assume!
};


http://www.cegui.org.uk/api_reference/n ... be540a4976

Greats,

Posted: Sat May 31, 2008 07:42
by CrazyEddie
Thanks, I'll get it fixed :)

CE