From 8b2464a723f7039a3efbc0c7d2e883729b3fa7dd Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 3 Aug 2014 00:46:38 +0300 Subject: Fix some casts. --- src/gui/gui.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/gui/gui.cpp') diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 7ac1273bd..0f8561643 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -488,7 +488,8 @@ void Gui::draw() const int posY = mouseY - (image->mBounds.h / 2); mGraphics->drawImage(image, posX, posY); } - Image *const mouseCursor = mMouseCursors->get(mCursorType); + Image *const mouseCursor = mMouseCursors->get( + static_cast(mCursorType)); if (mouseCursor) { mouseCursor->setAlpha(mMouseCursorAlpha); @@ -845,7 +846,7 @@ void Gui::distributeMouseEvent(Widget *const source, std::list mouseListeners = widget->getMouseListeners(); - unsigned int mouseType = event.getType(); + const MouseEventType::Type mouseType = event.getType(); // Send the event to all mouse listeners of the widget. FOR_EACH (std::list::const_iterator, it, mouseListeners) -- cgit v1.2.3-70-g09d2