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:
@@ -50,8 +50,8 @@ public:
|
|||||||
|
|
||||||
// globally disable restoring or saving the persistent properties (both are
|
// globally disable restoring or saving the persistent properties (both are
|
||||||
// enabled by default)
|
// enabled by default)
|
||||||
bool DisableSaving() { m_doSave = false; }
|
void DisableSaving() { m_doSave = false; }
|
||||||
bool DisableRestoring() { m_doRestore = false; }
|
void DisableRestoring() { m_doRestore = false; }
|
||||||
|
|
||||||
|
|
||||||
// register an object with the manager: when using the first overload,
|
// register an object with the manager: when using the first overload,
|
||||||
|
Reference in New Issue
Block a user