MS-DOS fix to wxDir
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13466 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -61,7 +61,7 @@ public:
|
|||||||
|
|
||||||
bool IsOk() const { return m_dir != NULL; }
|
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 SetFlags(int flags) { m_flags = flags; }
|
||||||
|
|
||||||
void Rewind();
|
void Rewind();
|
||||||
@@ -106,6 +106,16 @@ wxDirData::~wxDirData()
|
|||||||
PM_findClose(m_dir);
|
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()
|
void wxDirData::Rewind()
|
||||||
{
|
{
|
||||||
if ( m_dir )
|
if ( m_dir )
|
||||||
|
Reference in New Issue
Block a user