From: Robin Dunn Date: Thu, 17 Jun 2004 05:49:47 +0000 (+0000) Subject: Fixed broken DocDeclAStr macro X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a6ef7362056c6c44971e57b1dff13e012b796096?ds=inline Fixed broken DocDeclAStr macro git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27846 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_defs.i b/wxPython/src/_defs.i index 9228e2695d..77d040b614 100644 --- a/wxPython/src/_defs.i +++ b/wxPython/src/_defs.i @@ -190,13 +190,13 @@ typedef unsigned char byte; // Set the autodoc and the docstring for a decl and then define the decl too. // Must use the full declaration of the item. #ifdef _DO_FULL_DOCS - %define DocDeclAStr(type, decl, astr, details, docstr) + %define DocDeclAStr(type, decl, astr, docstr, details) %feature("autodoc") decl astr; %feature("docstring") decl docstr details; type decl %enddef #else - %define DocDeclAStr(type, decl, astr, details, docstr) + %define DocDeclAStr(type, decl, astr, docstr, details) %feature("autodoc") decl astr; %feature("docstring") decl docstr; type decl