Removed compiler warnings on linux as well. Now there are (nearly)only ERT warnings left.

p4#: 20238
This commit is contained in:
Jacob Støren
2013-01-24 14:26:51 +01:00
parent 6465913e0d
commit 288c8bda71
3 changed files with 4 additions and 5 deletions

View File

@@ -140,8 +140,8 @@ void QtMouseState::updateFromMouseEvent(QGraphicsSceneMouseEvent* event)
if (numMouseButtonsInState(m_mouseButtonState) == 1)
{
m_cleanButtonPressButton = buttonPressed;
m_cleanButtonPressPosX = event->scenePos().x();
m_cleanButtonPressPosY = event->scenePos().y();
m_cleanButtonPressPosX = (int)event->scenePos().x();
m_cleanButtonPressPosY = (int)event->scenePos().y();
}
}