X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..c59f6793fb6c116e6b9abdaca4de0c4a08a0e5b0:/include/wx/stack.h

diff --git a/include/wx/stack.h b/include/wx/stack.h
index 3edda4fc49..2500a114c6 100644
--- a/include/wx/stack.h
+++ b/include/wx/stack.h
@@ -5,7 +5,7 @@
 // Modified by:
 // Created:     30.07.2001
 // Copyright:   (c) 2001 Lindsay Mathieson <lindsay@mathieson.org>
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_STACK_H_
@@ -16,28 +16,28 @@
 #define WX_DECLARE_STACK(obj, cls)\
 class cls : public wxVectorBase\
 {\
-	WX_DECLARE_VECTORBASE(obj, cls);\
+    WX_DECLARE_VECTORBASE(obj, cls);\
 public:\
-	void push(const obj& o)\
-	{\
-		bool rc = Alloc(size() + 1);\
-		wxASSERT(rc);\
-		Append(new obj(o));\
-	};\
+    void push(const obj& o)\
+    {\
+        bool rc = Alloc(size() + 1);\
+        wxASSERT(rc);\
+        Append(new obj(o));\
+    };\
 \
-	void pop()\
-	{\
-		RemoveAt(size() - 1);\
-	};\
+    void pop()\
+    {\
+        RemoveAt(size() - 1);\
+    };\
 \
-	obj& top()\
-	{\
-		return *(obj *) GetItem(size() - 1);\
-	};\
-	const obj& top() const\
-	{\
-		return *(obj *) GetItem(size() - 1);\
-	};\
+    obj& top()\
+    {\
+        return *(obj *) GetItem(size() - 1);\
+    };\
+    const obj& top() const\
+    {\
+        return *(obj *) GetItem(size() - 1);\
+    };\
 }
 
 #endif // _WX_STACK_H_