X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f33396842a7bdecef5c1de6f80b145a096bbeabc..a3a7f8791c22fb931709cce7a915283135315dca:/docs/latex/wx/list.tex?ds=sidebyside 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