Apply modified patch 2879724 from Marko Klopcic

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-cherylfoil@11716 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2009-11-01 22:05:01 +00:00
commit 06269a50a5
2 changed files with 13 additions and 3 deletions

View file

@ -2533,10 +2533,10 @@ public:
// translate and write javadoc comment if flagged
if (doxygen_javadoc_flag){
String *doxygen_comments;
if(DoxygenTranslator::getDocumentation(n, JavaDoc, doxygen_comments)){
if(DoxygenTranslator::getDocumentation(n, JavaDoc, doxygen_comments)) {
if(comment_creation_chatter)
Printf(function_code, "/* This was generated from moduleClassFunctionHandler() */");
Printf(function_code, Char(doxygen_comments));
Printv(function_code, doxygen_comments, NIL);
Delete(doxygen_comments);
}
}