]> git.saurik.com Git - wxWidgets.git/commitdiff
fix typo in an example (patch 1837973)
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 28 Nov 2007 02:56:19 +0000 (02:56 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 28 Nov 2007 02:56:19 +0000 (02:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50299 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/variant.tex

index 3bf09e16f77eeff9f2ecabd5d912ac3f09bf88b5..5ede86d94052371f172fc756e6807d7ee66396df 100644 (file)
@@ -44,15 +44,15 @@ cannot be declared outside the class, the shift left operators are used like thi
 \begin{verbatim}
     // in the header file
     DECLARE_VARIANT_OBJECT(MyClass)
-    
+
     // in the implementation file
-    IMPLMENT_VARIANT_OBJECT(MyClass)
-    
+    IMPLEMENT_VARIANT_OBJECT(MyClass)
+
     // in the user code
     wxVariant variant;
     MyClass value;
     variant << value;
-    
+
     // or
     value << variant;
 \end{verbatim}