|
From: <pst...@us...> - 2008-03-30 11:58:18
|
Revision: 361
http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=361&view=rev
Author: pstieber
Date: 2008-03-30 04:58:15 -0700 (Sun, 30 Mar 2008)
Log Message:
-----------
Indicated global scope in a function call.
Modified Paths:
--------------
trunk/jazz/src/FindFile.cpp
Modified: trunk/jazz/src/FindFile.cpp
===================================================================
--- trunk/jazz/src/FindFile.cpp 2008-03-30 11:25:53 UTC (rev 360)
+++ trunk/jazz/src/FindFile.cpp 2008-03-30 11:58:15 UTC (rev 361)
@@ -46,7 +46,7 @@
//*****************************************************************************
wxString FindFile(const wxString& FileName)
{
- if (wxFileExists(FileName))
+ if (::wxFileExists(FileName))
{
cout << "imediate hit " << FileName << endl;
return FileName;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|