]> git.saurik.com Git - wxWidgets.git/commitdiff
Correct the return type of wxPersistenceManager methods in the documentation.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 2 Apr 2012 16:07:28 +0000 (16:07 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 2 Apr 2012 16:07:28 +0000 (16:07 +0000)
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

index 97e3fb60cb19652849315f37b495ba73b060962e..6a6a1aa13ec5ae5ae1fe9ea5014cef87ecfbec81 100644 (file)
@@ -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();
 
 
     /**