Small fix to display params type correctly in PyDocConverter
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-doxygen@13484 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
fb3ee4fb78
commit
c72a56c6f1
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ std::string PyDocConverter::getParamType(std::string param) {
|
|||
Parm *p = NULL;
|
||||
for (p = plist; p;) {
|
||||
if (Char(Getattr(p, "name")) == param) {
|
||||
std::string type = Char(Swig_name_make(currentNode, 0, Getattr(p, "type"), 0, 0));
|
||||
std::string type = Char(SwigType_str(Getattr(p, "type"), ""));
|
||||
return type;
|
||||
}
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue