Update of /cvsroot/audacity/audacity-src/src/effects/nyquist
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv9119/effects/nyquist

Modified Files:
        LoadNyquist.cpp Nyquist.cpp 
Log Message:
Moved the flags argument on AudacityApp::FindFilesInPathList()
to the end and defaulted it to the most common usage.

Made FindFilesInPathList() actually use the argument (wasn't before).

Removed the specification on all references that matched the default.


Index: Nyquist.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/effects/nyquist/Nyquist.cpp,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -d -r1.75 -r1.76
--- Nyquist.cpp 23 Mar 2009 00:32:54 -0000      1.75
+++ Nyquist.cpp 20 May 2009 06:05:38 -0000      1.76
@@ -372,7 +372,7 @@
                                             pathList);
       }
 
-      wxGetApp().FindFilesInPathList(wxT("nyquist.lsp"), pathList, wxFILE, 
files);
+      wxGetApp().FindFilesInPathList(wxT("nyquist.lsp"), pathList, files);
 
       if (files.GetCount() > 0) {
          mXlispPath = ::wxPathOnly(files[0]);

Index: LoadNyquist.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/effects/nyquist/LoadNyquist.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- LoadNyquist.cpp     4 Jun 2008 19:10:54 -0000       1.6
+++ LoadNyquist.cpp     20 May 2009 06:05:38 -0000      1.7
@@ -50,7 +50,7 @@
                                          pathList);
    }
 
-   wxGetApp().FindFilesInPathList(wxT("*.ny"), pathList, wxFILE, files);
+   wxGetApp().FindFilesInPathList(wxT("*.ny"), pathList, files);
 
    for(i=0; i<files.GetCount(); i++)
       LoadNyquistEffect(files[i]);


------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to