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:
Dmitry Kabak 2012-08-02 12:22:26 +00:00
commit c72a56c6f1

View file

@ -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;
}
/*