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

Modified Files:
        Equalization.cpp 
Log Message:
I understand this now, the whenSliders array was being accessed out of bounds.  
Trivial change to recored this in CVS.

Index: Equalization.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/effects/Equalization.cpp,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- Equalization.cpp    14 Feb 2007 01:10:54 -0000      1.54
+++ Equalization.cpp    15 Feb 2007 00:00:24 -0000      1.55
@@ -2038,7 +2038,7 @@
       if( m_EQVals[i] < -20.)
          m_EQVals[i] = -20.;
    }
-   ErrMin();                  //move sliders about to minimise error
+   ErrMin();                  //move sliders to minimise error
    for (int i = 0; i<bandsInUse; ++i)
    {
       m_sliders[i]->SetValue((int)(m_EQVals[i]+.5)); //actually set slider 
positions


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to