Use size_t instead of unsigned int

This commit is contained in:
David Capello 2015-12-03 18:36:55 -03:00
parent 3f984a471c
commit 48838c743a

View File

@ -145,7 +145,7 @@ bool MovingCelState::onMouseMove(Editor* editor, MouseMessage* msg)
} }
} }
for (unsigned int i = 0; i < m_celList.size(); i++) { for (size_t i=0; i<m_celList.size(); ++i) {
Cel* cel = m_celList[i]; Cel* cel = m_celList[i];
gfx::Point* celStart = &m_celStarts[i]; gfx::Point* celStart = &m_celStarts[i];