X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c7c8fac6f809de2fcf9aa2092429aa320be9c750..b404a8f3b072129c107c6d9a5e0f6f53cd34807b:/src/common/persist.cpp diff --git a/src/common/persist.cpp b/src/common/persist.cpp index 52c4513924..7f8898f327 100644 --- a/src/common/persist.cpp +++ b/src/common/persist.cpp @@ -23,6 +23,8 @@ #pragma hdrstop #endif +#if wxUSE_CONFIG + #ifndef WX_PRECOMP #endif // WX_PRECOMP @@ -40,6 +42,10 @@ wxPersistenceManager& wxPersistenceManager::Get() return s_manager; } +wxPersistenceManager::~wxPersistenceManager() +{ +} + wxString wxPersistenceManager::GetKey(const wxPersistentObject& who, const wxString& name) const @@ -146,4 +152,6 @@ wxPERSIST_DEFINE_SAVE_RESTORE_FOR(int) wxPERSIST_DEFINE_SAVE_RESTORE_FOR(long) wxPERSIST_DEFINE_SAVE_RESTORE_FOR(wxString) -#undef wxPERSIST_DEFINE_SAVE_RESTORE_FOR +#undef wxPERSIST_DEFINE_SAVE_RESTORE_FOR + +#endif // wxUSE_CONFIG