diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index 6b0c967cca..435ff24df6 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -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