fix for the previous commit: delete m_conv after calling Flush() which uses it

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-04-10 00:52:21 +00:00
parent 3952889a90
commit 2754877b7c

View File

@ -568,11 +568,11 @@ void wxFileConfig::CleanUp()
wxFileConfig::~wxFileConfig()
{
delete m_conv;
Flush();
CleanUp();
delete m_conv;
}
// ----------------------------------------------------------------------------