Fixed broken DocDeclAStr macro
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27846 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -190,13 +190,13 @@ typedef unsigned char byte;
|
|||||||
// Set the autodoc and the docstring for a decl and then define the decl too.
|
// Set the autodoc and the docstring for a decl and then define the decl too.
|
||||||
// Must use the full declaration of the item.
|
// Must use the full declaration of the item.
|
||||||
#ifdef _DO_FULL_DOCS
|
#ifdef _DO_FULL_DOCS
|
||||||
%define DocDeclAStr(type, decl, astr, details, docstr)
|
%define DocDeclAStr(type, decl, astr, docstr, details)
|
||||||
%feature("autodoc") decl astr;
|
%feature("autodoc") decl astr;
|
||||||
%feature("docstring") decl docstr details;
|
%feature("docstring") decl docstr details;
|
||||||
type decl
|
type decl
|
||||||
%enddef
|
%enddef
|
||||||
#else
|
#else
|
||||||
%define DocDeclAStr(type, decl, astr, details, docstr)
|
%define DocDeclAStr(type, decl, astr, docstr, details)
|
||||||
%feature("autodoc") decl astr;
|
%feature("autodoc") decl astr;
|
||||||
%feature("docstring") decl docstr;
|
%feature("docstring") decl docstr;
|
||||||
type decl
|
type decl
|
||||||
|
Reference in New Issue
Block a user