]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/recguard.h
Split up the context menu functionality to make it easier to customise.
[wxWidgets.git] / include / wx / recguard.h
index ea4e4995db29a719899e750d04929860cad06d51..3b7fe8e90d9ae485b946b823fdd8204664bf23d2 100644 (file)
@@ -5,7 +5,7 @@
 // Modified by:
 // Created:     14.08.2003
 // RCS-ID:      $Id$
-// Copyright:   (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
+// Copyright:   (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
@@ -29,13 +29,13 @@ class WXDLLIMPEXP_BASE wxRecursionGuard
 public:
     wxRecursionGuard(wxRecursionGuardFlag& flag)
         : m_flag(flag)
-    { 
+    {
         m_isInside = flag++ != 0;
     }
 
     ~wxRecursionGuard()
     {
-        wxASSERT_MSG( m_flag > 0, _T("unbalanced wxRecursionGuards!?") );
+        wxASSERT_MSG( m_flag > 0, wxT("unbalanced wxRecursionGuards!?") );
 
         m_flag--;
     }