Update of /cvsroot/audacity/audacity-src/src/commands
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv31761/src/commands

Modified Files:
        CommandManager.cpp 
Log Message:
Code changed to avoid warnings under MSVC.

Index: CommandManager.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/commands/CommandManager.cpp,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- CommandManager.cpp  29 May 2009 02:52:12 -0000      1.69
+++ CommandManager.cpp  30 May 2009 15:15:02 -0000      1.70
@@ -1152,7 +1152,7 @@
 void CommandManager::CheckDups()
 {
    int cnt = mCommandList.GetCount();
-   for (size_t j = 0;  j < cnt; j++) {
+   for (size_t j = 0;  (int)j < cnt; j++) {
       if (mCommandList[j]->key.IsEmpty()) {
          continue;
       }
@@ -1161,7 +1161,7 @@
          continue;
       }
 
-      for (size_t i = 0; i < cnt; i++) {
+      for (size_t i = 0; (int)i < cnt; i++) {
          if (i == j) {
             continue;
          }


------------------------------------------------------------------------------
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
is a gathering of tech-side developers & brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing, & 
iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com 
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to