File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ QCString includeStatement(SrcLangExt lang,IncludeKind kind)
7373QCString includeOpen (SrcLangExt lang,IncludeKind kind)
7474{
7575 if (lang==SrcLangExt::Java || kind==IncludeKind::ImportModule) return " " ;
76- if (kind & IncludeKind_LocalMask)
76+ if (( kind & IncludeKind_LocalMask) || (lang==SrcLangExt::IDL) )
7777 {
7878 return " \" " ;
7979 }
@@ -85,7 +85,9 @@ QCString includeOpen(SrcLangExt lang,IncludeKind kind)
8585
8686QCString includeClose (SrcLangExt lang,IncludeKind kind)
8787{
88- if (lang==SrcLangExt::Java || lang==SrcLangExt::IDL) return " ;" ;
88+ if (lang==SrcLangExt::IDL) return " \" ;" ;
89+ else if (lang==SrcLangExt::Java) return " ;" ;
90+
8991 switch (kind)
9092 {
9193 case IncludeKind::ImportLocal: return " \" ;" ;
You can’t perform that action at this time.
0 commit comments