]> git.saurik.com Git - wxWidgets.git/commitdiff
fix missing end brace
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sun, 9 Mar 2008 11:58:39 +0000 (11:58 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sun, 9 Mar 2008 11:58:39 +0000 (11:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52405 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/archive.tex

index 4bf1f0fc26e02ddc66b6c3ea6e0fee50599fdd41..1b9ad6c75076a6e7c9b5c3f73fd6b632a8cd0013 100644 (file)
@@ -488,10 +488,9 @@ class wxArchiveIterator
 
     // template parameter 'Arc' should be the type of an archive input stream
     wxArchiveIterator(Arc& arc) {
-
-    /* ... */
+        // ...
+    }
 };
-
 \end{verbatim}
 
 The first template parameter should be the type of archive input stream
@@ -507,7 +506,6 @@ The {\tt <wx/archive.h>} header defines the following typedefs:
 
     typedef wxArchiveIterator<wxArchiveInputStream,
              std::pair<wxString, wxArchiveEntry*> > wxArchivePairIter;
-
 \end{verbatim}
 
 The header for any implementation of this interface should define similar