Update of /cvsroot/audacity/audacity-src/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv15866/src
Modified Files: LoadModules.cpp Log Message: Fix version comparison on OSX. Index: LoadModules.cpp =================================================================== RCS file: /cvsroot/audacity/audacity-src/src/LoadModules.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- LoadModules.cpp 23 Jul 2009 18:19:31 -0000 1.13 +++ LoadModules.cpp 23 Sep 2009 04:10:53 -0000 1.14 @@ -101,7 +101,7 @@ if (versionFn) { wxString moduleVersion = versionFn(); - if (moduleVersion != AUDACITY_VERSION_STRING) + if (!moduleVersion.IsSameAs(AUDACITY_VERSION_STRING)) { wxLogDebug(wxT("The module %s is designed to work with Audacity version %s; it will not be loaded."), fname.c_str(), moduleVersion.c_str()); delete pDLL; ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Audacity-cvs mailing list Audacity-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/audacity-cvs