DisableSaving/Restoring() should be void, not bool

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58530 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2009-01-30 22:10:14 +00:00
parent 0fa541e870
commit 9966c62b28

View File

@ -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,