Update of /cvsroot/audacity/audacity-src/src/effects/ladspa
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv9119/effects/ladspa
Modified Files:
LoadLadspa.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: LoadLadspa.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/effects/ladspa/LoadLadspa.cpp,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- LoadLadspa.cpp 15 Aug 2008 06:21:34 -0000 1.33
+++ LoadLadspa.cpp 20 May 2009 06:05:38 -0000 1.34
@@ -214,9 +214,8 @@
rdfPathList);
}
- wxGetApp().FindFilesInPathList(wxT("*.rdf"), rdfPathList, wxFILE, rdfFiles);
- wxGetApp().FindFilesInPathList(wxT("*.rdfs"),
- rdfPathList, wxFILE, rdfFiles);
+ wxGetApp().FindFilesInPathList(wxT("*.rdf"), rdfPathList, rdfFiles);
+ wxGetApp().FindFilesInPathList(wxT("*.rdfs"), rdfPathList, rdfFiles);
for(size_t i = 0; i < rdfFiles.GetCount(); ++i) {
wxString fileUri(wxT("file://"));
fileUri += rdfFiles[i];
@@ -299,9 +298,9 @@
}
#ifdef __WXMSW__
- wxGetApp().FindFilesInPathList(wxT("*.dll"), pathList, wxFILE, files);
+ wxGetApp().FindFilesInPathList(wxT("*.dll"), pathList, files);
#else
- wxGetApp().FindFilesInPathList(wxT("*.so"), pathList, wxFILE, files);
+ wxGetApp().FindFilesInPathList(wxT("*.so"), pathList, files);
#endif
for(i=0; i<files.GetCount(); 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