]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/recguard.h
fix wxMSW build after wxBrush changes: return wxBRUSHSTYLE_MAX instead of zero; fix...
[wxWidgets.git] / interface / recguard.h
index 6aacefa3bd8b108bc4fdecf79d62b6ec6ac75729..1aae24aa3965afc5e2b391bcf966691a1c00f5a3 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        recguard.h
-// Purpose:     documentation for wxRecursionGuardFlag class
+// Purpose:     interface of wxRecursionGuardFlag
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -27,6 +27,7 @@ public:
 };
 
 
+
 /**
     @class wxRecursionGuard
     @wxheader{recguard.h}
@@ -79,7 +80,6 @@ public:
     /**
         The destructor resets the flag value so that the function can be entered again
         the next time.
-        
         Note that it is not virtual and so this class is not meant to be derived from
         (besides, there is absolutely no reason to do it anyhow).
     */
@@ -90,8 +90,8 @@ public:
         wxRecursionGuard (i.e. between this line and the end of current scope). Usually
         the function using wxRecursionGuard takes some specific actions in such case
         (may be simply returning) to prevent reentrant calls to itself.
-        
         If this method returns @false, it is safe to continue.
     */
-    bool IsInside();
+    bool IsInside() const;
 };
+