summaryrefslogtreecommitdiffstats
path: root/src/plantuml.cpp
diff options
context:
space:
mode:
authorbyzheng <zheng.bangyou@gmail.com>2015-01-14 11:31:54 (GMT)
committerbyzheng <zheng.bangyou@gmail.com>2015-01-14 11:31:54 (GMT)
commitedf8dbbbc17e65e2eb97b5c9b4763a04969017fe (patch)
tree0cbdf61cf27d5514dbf21db85692e0abd4886726 /src/plantuml.cpp
parent081e3a9f921dc335422773526d53c8b99fb32147 (diff)
downloadDoxygen-edf8dbbbc17e65e2eb97b5c9b4763a04969017fe.zip
Doxygen-edf8dbbbc17e65e2eb97b5c9b4763a04969017fe.tar.gz
Doxygen-edf8dbbbc17e65e2eb97b5c9b4763a04969017fe.tar.bz2
Remove the new line after @startuml in generated pu file
Try to fix this problem for me: http://sourceforge.net/p/doxygen/mailman/message/33228212/
Diffstat (limited to 'src/plantuml.cpp')
-rw-r--r--src/plantuml.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plantuml.cpp b/src/plantuml.cpp
index 87e70e1..03ab4ed 100644
--- a/src/plantuml.cpp
+++ b/src/plantuml.cpp
@@ -43,7 +43,7 @@ QCString writePlantUMLSource(const QCString &outDir,const QCString &fileName,con
{
err("Could not open file %s for writing\n",baseName.data());
}
- QCString text = "@startuml\n";
+ QCString text = "@startuml";
text+=content;
text+="@enduml\n";
file.writeBlock( text, text.length() );