From: <pst...@us...> - 2011-08-05 01:42:15
|
Revision: 877 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=877&view=rev Author: pstieber Date: 2011-08-05 01:42:09 +0000 (Fri, 05 Aug 2011) Log Message: ----------- Removed an unneeded cast. Modified Paths: -------------- trunk/jazz/src/FindFile.cpp Modified: trunk/jazz/src/FindFile.cpp =================================================================== --- trunk/jazz/src/FindFile.cpp 2011-08-05 01:35:22 UTC (rev 876) +++ trunk/jazz/src/FindFile.cpp 2011-08-05 01:42:09 UTC (rev 877) @@ -80,7 +80,7 @@ // Look where the executable was started. FoundFileName = ""; - Home = wxPathOnly((const char *)wxTheApp->argv[0]); + Home = wxPathOnly(wxTheApp->argv[0]); FoundFileName << Home << wxFileName::GetPathSeparator() << FileName; if (wxFileExists(FoundFileName)) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |