harmless warning fixes for WinCE (mostly unused parameters)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32639 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-03-07 19:26:51 +00:00
parent d5d5101391
commit abf912c5a1
4 changed files with 15 additions and 3 deletions

View File

@@ -214,7 +214,9 @@ void wxPathList::AddEnvList (const wxString& envVariable)
delete [] s;
}
#endif
#else // __WXWINCE__
wxUnusedVar(envVariable);
#endif // !__WXWINCE__/__WXWINCE__
}
// Given a full filename (with path), ensure that that file can
@@ -681,6 +683,8 @@ wxContractPath (const wxString& filename, const wxString& envname, const wxStrin
wxStrcat (tcp, wxT("}"));
wxStrcat (tcp, wxFileFunctionsBuffer);
}
#else
wxUnusedVar(envname);
#endif
// Handle User's home (ignore root homes!)
@@ -1330,6 +1334,9 @@ wxChar *wxGetWorkingDirectory(wxChar *buf, int sz)
// TODO ?
return NULL;
#elif defined(__WXWINCE__)
// TODO
wxUnusedVar(buf);
wxUnusedVar(sz);
return NULL;
#else
if ( !buf )
@@ -1471,6 +1478,7 @@ bool wxSetWorkingDirectory(const wxString& d)
#ifdef __WIN32__
#ifdef __WXWINCE__
// No equivalent in WinCE
wxUnusedVar(d);
return false;
#else
return (bool)(SetCurrentDirectory(d) != 0);