[aseprite] 39/308: Use size_t instead of unsigned int

Tobias Hansen thansen at moszumanska.debian.org
Tue Mar 8 02:44:50 UTC 2016


This is an automated email from the git hooks/post-receive script.

thansen pushed a commit to branch master
in repository aseprite.

commit 48838c743a327369efdbd08a6b6462c32c79c8d6
Author: David Capello <davidcapello at gmail.com>
Date:   Thu Dec 3 18:36:55 2015 -0300

    Use size_t instead of unsigned int
---
 src/app/ui/editor/moving_cel_state.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/ui/editor/moving_cel_state.cpp b/src/app/ui/editor/moving_cel_state.cpp
index 410ddd2..291dfc4 100644
--- a/src/app/ui/editor/moving_cel_state.cpp
+++ b/src/app/ui/editor/moving_cel_state.cpp
@@ -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];
     gfx::Point* celStart = &m_celStarts[i];
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/aseprite.git



More information about the Pkg-games-commits mailing list