Warning fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41790 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2006-10-09 08:11:10 +00:00
parent 1d756eff85
commit a8b6a1b1cd

View File

@ -1801,6 +1801,7 @@ bool wxIsWritable(const wxString &path)
#elif defined( __WINDOWS__ )
return wxCheckGenericPermission(path, GENERIC_WRITE);
#else
wxUnusedVar(path);
// TODO
return false;
#endif
@ -1814,6 +1815,7 @@ bool wxIsReadable(const wxString &path)
#elif defined( __WINDOWS__ )
return wxCheckGenericPermission(path, GENERIC_READ);
#else
wxUnusedVar(path);
// TODO
return false;
#endif
@ -1827,6 +1829,7 @@ bool wxIsExecutable(const wxString &path)
#elif defined( __WINDOWS__ )
return wxCheckGenericPermission(path, GENERIC_EXECUTE);
#else
wxUnusedVar(path);
// TODO
return false;
#endif