X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cea0869cdf378f178f2ff3751b7f348fa8db7bf2..4f13428c4f852674c8f8fc99af26d9486bf907db:/src/common/filename.cpp diff --git a/src/common/filename.cpp b/src/common/filename.cpp index f55a693ae8..91451e4452 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -2040,7 +2040,10 @@ wxULongLong wxFileName::GetSize(const wxString &filename) if (!wxFileExists(filename)) return wxInvalidSize; -#ifdef __WIN32__ +#if defined(__WXPALMOS__) + // TODO + return wxInvalidSize; +#elif defined(__WIN32__) wxFileHandle f(filename, wxFileHandle::Read); if (!f.IsOk()) return wxInvalidSize;