]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/recguard.h
wxScrolBar event sending fix in wxUniv.
[wxWidgets.git] / include / wx / recguard.h
index db2932d23a2ee5e3f62b08e9ec26d565488c0ad7..010637efdb6b9d848d08bb9b9eee97a5c4942f3f 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     14.08.2003
 // RCS-ID:      $Id$
 // Copyright:   (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_RECGUARD_H_
@@ -29,7 +29,7 @@ class WXDLLIMPEXP_BASE wxRecursionGuard
 public:
     wxRecursionGuard(wxRecursionGuardFlag& flag)
         : m_flag(flag)
-    { 
+    {
         m_isInside = flag++ != 0;
     }