From: Vadim Zeitlin Date: Fri, 30 Jan 2009 22:10:14 +0000 (+0000) Subject: DisableSaving/Restoring() should be void, not bool X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9966c62b28abfe227198ec3fe79d557a2676ace2 DisableSaving/Restoring() should be void, not bool git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58530 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/persist.h b/include/wx/persist.h index 7e331b6480..23cf0691db 100644 --- a/include/wx/persist.h +++ b/include/wx/persist.h @@ -50,8 +50,8 @@ public: // globally disable restoring or saving the persistent properties (both are // enabled by default) - bool DisableSaving() { m_doSave = false; } - bool DisableRestoring() { m_doRestore = false; } + void DisableSaving() { m_doSave = false; } + void DisableRestoring() { m_doRestore = false; } // register an object with the manager: when using the first overload,