From 91f5965066a8ee89bf0bb9c218ada1c50e9dd70c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 2 Apr 2012 16:07:28 +0000 Subject: [PATCH] Correct the return type of wxPersistenceManager methods in the documentation. DisableSaving() and DisableRestoring() don't return anything. Closes #14170. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71075 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/persist.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/wx/persist.h b/interface/wx/persist.h index 97e3fb60cb..6a6a1aa13e 100644 --- a/interface/wx/persist.h +++ b/interface/wx/persist.h @@ -57,7 +57,7 @@ public: @see DisableRestoring() */ - bool DisableSaving(); + void DisableSaving(); /** Globally disable restoring the persistence object properties. @@ -67,7 +67,7 @@ public: @see DisableSaving() */ - bool DisableRestoring(); + void DisableRestoring(); /** -- 2.45.2