Warning fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41790 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
1d756eff85
commit
a8b6a1b1cd
@ -1801,6 +1801,7 @@ bool wxIsWritable(const wxString &path)
|
|||||||
#elif defined( __WINDOWS__ )
|
#elif defined( __WINDOWS__ )
|
||||||
return wxCheckGenericPermission(path, GENERIC_WRITE);
|
return wxCheckGenericPermission(path, GENERIC_WRITE);
|
||||||
#else
|
#else
|
||||||
|
wxUnusedVar(path);
|
||||||
// TODO
|
// TODO
|
||||||
return false;
|
return false;
|
||||||
#endif
|
#endif
|
||||||
@ -1814,6 +1815,7 @@ bool wxIsReadable(const wxString &path)
|
|||||||
#elif defined( __WINDOWS__ )
|
#elif defined( __WINDOWS__ )
|
||||||
return wxCheckGenericPermission(path, GENERIC_READ);
|
return wxCheckGenericPermission(path, GENERIC_READ);
|
||||||
#else
|
#else
|
||||||
|
wxUnusedVar(path);
|
||||||
// TODO
|
// TODO
|
||||||
return false;
|
return false;
|
||||||
#endif
|
#endif
|
||||||
@ -1827,6 +1829,7 @@ bool wxIsExecutable(const wxString &path)
|
|||||||
#elif defined( __WINDOWS__ )
|
#elif defined( __WINDOWS__ )
|
||||||
return wxCheckGenericPermission(path, GENERIC_EXECUTE);
|
return wxCheckGenericPermission(path, GENERIC_EXECUTE);
|
||||||
#else
|
#else
|
||||||
|
wxUnusedVar(path);
|
||||||
// TODO
|
// TODO
|
||||||
return false;
|
return false;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user