Replaced use of unsigned int/enum mask combinations with int/enum mask combinations to avoid the need for casting enums to unsigned ints,
and to avoid associated warnings. Update wrappers to reflect these changes.
This commit is contained in:
@@ -260,15 +260,8 @@ public:
|
||||
|
||||
void setLoopPresentation(bool loop) { _loopPresentation = loop; }
|
||||
bool getLoopPresentation() const { return _loopPresentation; }
|
||||
|
||||
void dispatchEvent(const KeyPosition& keyPosition);
|
||||
|
||||
enum ObjectMask
|
||||
{
|
||||
MOVIE = 1<<0,
|
||||
OBJECTS = 1<<1,
|
||||
ALL_OBJECTS = MOVIE | OBJECTS
|
||||
};
|
||||
void dispatchEvent(const KeyPosition& keyPosition);
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user