X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/81d9e625564a18de11df7270b689e6e5ae6c2e58..488194403efc0093d6ae3c6e0c5731b854258805:/src/msdos/dir.cpp diff --git a/src/msdos/dir.cpp b/src/msdos/dir.cpp index 7ae2827cfd..d62fadd3cb 100644 --- a/src/msdos/dir.cpp +++ b/src/msdos/dir.cpp @@ -1,7 +1,7 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: src/palmos/dir.cpp -// Purpose: wxDir implementation for PalmOS -// Author: William Osborne - minimal working wxPalmOS port +// Name: src/msdos/dir.cpp +// Purpose: wxDir implementation for DOS +// Author: derived from wxPalmOS code // Modified by: // Created: 10.13.04 // RCS-ID: $Id$ @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "dir.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -67,7 +63,7 @@ // ---------------------------------------------------------------------------- /* static */ -bool wxDir::Exists(const wxString& dir) +bool wxDir::Exists(const wxString& WXUNUSED(dir)) { return false; } @@ -76,11 +72,11 @@ bool wxDir::Exists(const wxString& dir) // wxDir construction/destruction // ---------------------------------------------------------------------------- -wxDir::wxDir(const wxString& dirname) +wxDir::wxDir(const wxString& WXUNUSED(dirname)) { } -bool wxDir::Open(const wxString& dirname) +bool wxDir::Open(const wxString& WXUNUSED(dirname)) { return false; } @@ -92,9 +88,7 @@ bool wxDir::IsOpened() const wxString wxDir::GetName() const { - wxString name; - - return name; + return wxEmptyString; } wxDir::~wxDir() @@ -105,15 +99,14 @@ wxDir::~wxDir() // wxDir enumerating // ---------------------------------------------------------------------------- -bool wxDir::GetFirst(wxString *filename, - const wxString& filespec, - int flags) const +bool wxDir::GetFirst(wxString *WXUNUSED(filename), + const wxString& WXUNUSED(filespec), + int WXUNUSED(flags)) const { return false; } -bool wxDir::GetNext(wxString *filename) const +bool wxDir::GetNext(wxString *WXUNUSED(filename)) const { return false; } -