]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msdos/dir.cpp
Set the menu itself as event object for EVT_MENU_{OPEN,CLOSED} in wxMSW.
[wxWidgets.git] / src / msdos / dir.cpp
index 7fa7d61f862f14e55319013c671d21ddd7cde400..7693fb10b4e588b96b5099a76ac6d26450cf9257 100644 (file)
@@ -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$
@@ -30,7 +30,6 @@
 #endif // PCH
 
 #include "wx/dir.h"
-#include "wx/filefn.h"          // for wxDirExists()
 
 // ----------------------------------------------------------------------------
 // define the types and functions used for file searching
 // implementation
 // ============================================================================
 
-// ----------------------------------------------------------------------------
-// wxDir helpers
-// ----------------------------------------------------------------------------
-
-/* static */
-bool wxDir::Exists(const wxString& dir)
-{
-    return false;
-}
-
 // ----------------------------------------------------------------------------
 // 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;
 }
@@ -88,9 +77,7 @@ bool wxDir::IsOpened() const
 
 wxString wxDir::GetName() const
 {
-    wxString name;
-
-    return name;
+    return wxEmptyString;
 }
 
 wxDir::~wxDir()
@@ -101,15 +88,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;
 }
-