From f776e250d915402c4204706869eb5d26044ee235 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 27 Jun 1999 11:26:50 +0000 Subject: [PATCH] missing semicolon added to the example git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2909 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/list.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/latex/wx/list.tex b/docs/latex/wx/list.tex index 91c439dfa9..8cdcdf03f8 100644 --- a/docs/latex/wx/list.tex +++ b/docs/latex/wx/list.tex @@ -35,7 +35,7 @@ macros): // declare our list class: this macro declares and partly implements MyList // class (which derives from wxListBase) - WX_DECLARE_LIST(MyListElement, MyList) + WX_DECLARE_LIST(MyListElement, MyList); ... @@ -44,7 +44,7 @@ macros): // usually it will be found in the source file and not in the header #include - WX_DEFINE_LIST(MyList) + WX_DEFINE_LIST(MyList); // now MyList class may be used as a usual wxList, but all of its methods // will take/return the objects of the right (i.e. MyListElement) type. You