fix (harmless for now) g++ warning about non-virtual dtor

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58733 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-02-07 23:03:30 +00:00
parent cdf03c2292
commit 5bca8be2cf
2 changed files with 10 additions and 2 deletions

View File

@@ -136,6 +136,10 @@ private:
m_doRestore = true;
}
// trivial but virtual dtor
virtual ~wxPersistenceManager();
// helpers of Save/Restore()
//
// TODO: make this customizable by allowing

View File

@@ -40,6 +40,10 @@ wxPersistenceManager& wxPersistenceManager::Get()
return s_manager;
}
wxPersistenceManager::~wxPersistenceManager()
{
}
wxString
wxPersistenceManager::GetKey(const wxPersistentObject& who,
const wxString& name) const