From a8b6a1b1cdf05ed38d2953145b438fb46fe13248 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Mon, 9 Oct 2006 08:11:10 +0000 Subject: [PATCH] Warning fixes. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41790 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filefn.cpp | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.47.2