git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5813
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// ctor loads all info into memory for quicker access later on
// TODO it would be nice to load them all, but parse on demand only...
wxMimeTypesManagerImpl();
+ ~wxMimeTypesManagerImpl();
+
// implement containing class functions
wxFileType *GetFileTypeFromExtension(const wxString& ext);
{
m_next = NULL;
}
+
+ ~MailCapEntry()
+ {
+ if (m_next) delete m_next;
+ }
// accessors
const wxString& GetOpenCmd() const { return m_openCmd; }
handlers[hn]->GetMimeInfoRecords(this);
}
+
+wxMimeTypesManagerImpl::~wxMimeTypesManagerImpl()
+{
+ size_t cnt = m_aEntries.GetCount();
+ for (size_t i = 0; i < cnt; i++) delete m_aEntries[i];
+}
+
+
wxFileType *
wxMimeTypesManagerImpl::GetFileTypeFromExtension(const wxString& ext)
{