Update of /cvsroot/audacity/audacity-src/src
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv426

Modified Files:
        Project.cpp 
Log Message:
Constrain progress dialog value

Index: Project.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Project.cpp,v
retrieving revision 1.277
retrieving revision 1.278
diff -u -d -r1.277 -r1.278
--- Project.cpp 8 Sep 2006 22:55:59 -0000       1.277
+++ Project.cpp 9 Sep 2006 09:51:18 -0000       1.278
@@ -3190,6 +3190,9 @@
    }
 
    if (mProgressDialog[mProgressCurrent]) {
+      if (value > 1000) {
+         value = 1000;
+      }
       return mProgressDialog[mProgressCurrent]->Update(value, message);
    }
 


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to