]> git.saurik.com Git - wxWidgets.git/commitdiff
don't clear the handles list in dtor, it is static/global (patch 773029)
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 17 Jul 2003 22:03:28 +0000 (22:03 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 17 Jul 2003 22:03:28 +0000 (22:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22062 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/filesys.h

index f763f48579808286288441cf3f982b91d76612ca..f7147901859674b4334ec00ab0a4b63cd0fc446e 100644 (file)
@@ -160,8 +160,8 @@ protected:
 class WXDLLIMPEXP_BASE wxFileSystem : public wxObject
 {
 public:
-    wxFileSystem() : wxObject() {m_Path = m_LastName = wxEmptyString; m_FindFileHandler = NULL;}
-    ~wxFileSystem() { WX_CLEAR_LIST(wxList, m_Handlers); }
+    wxFileSystem() : wxObject() { m_FindFileHandler = NULL;}
+    virtual ~wxFileSystem() { }
 
     // sets the current location. Every call to OpenFile is
     // relative to this location.