X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/34885a147bdca70749ac22737b55cbc6e0558b4a..395cb311cf3dd86a69137b18b1027372bda6b914:/src/mgl/dirmgl.cpp diff --git a/src/mgl/dirmgl.cpp b/src/mgl/dirmgl.cpp index b6ce6e5ca0..62875935fe 100644 --- a/src/mgl/dirmgl.cpp +++ b/src/mgl/dirmgl.cpp @@ -6,8 +6,8 @@ // Created: 2001/12/09 // RCS-ID: $Id$ // Copyright: (c) 1999 Vadim Zeitlin -// (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) -// Licence: wxWindows license +// (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -61,7 +61,7 @@ public: bool IsOk() const { return m_dir != NULL; } - void SetFileSpec(const wxString& filespec) { m_filespec = filespec; } + void SetFileSpec(const wxString& filespec); void SetFlags(int flags) { m_flags = flags; } void Rewind(); @@ -106,6 +106,16 @@ wxDirData::~wxDirData() PM_findClose(m_dir); } +void wxDirData::SetFileSpec(const wxString& filespec) +{ +#ifdef __DOS__ + if ( filespec.IsEmpty() ) + m_filespec = _T("*.*"); + else +#endif + m_filespec = filespec; +} + void wxDirData::Rewind() { if ( m_dir )