diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-01-16 19:20:21 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-01-16 19:20:21 (GMT) |
commit | 8dab665567c9dffaa3f5fea198fc2110d536594d (patch) | |
tree | 78bac4e928b25e139605aceefa82537f378d8af0 /src/rtfgen.cpp | |
parent | d3461a1c31f008345d784dc3e819047bc5265c30 (diff) | |
download | Doxygen-8dab665567c9dffaa3f5fea198fc2110d536594d.zip Doxygen-8dab665567c9dffaa3f5fea198fc2110d536594d.tar.gz Doxygen-8dab665567c9dffaa3f5fea198fc2110d536594d.tar.bz2 |
Release-1.5.4
Diffstat (limited to 'src/rtfgen.cpp')
-rw-r--r-- | src/rtfgen.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp index 37e2ddd..753d133 100644 --- a/src/rtfgen.cpp +++ b/src/rtfgen.cpp @@ -1,6 +1,6 @@ /****************************************************************************** * - * + * $Id$ * * Copyright (C) 1997-2007 by Parker Waechter & Dimitri van Heesch. * @@ -1724,7 +1724,7 @@ void RTFGenerator::startClassDiagram() DBG_RTF(t <<"{\\comment startClassDiagram }" << endl) } -void RTFGenerator::endClassDiagram(ClassDiagram &d, +void RTFGenerator::endClassDiagram(const ClassDiagram &d, const char *fileName,const char *) { newParagraph(); @@ -2228,7 +2228,7 @@ void RTFGenerator::startDotGraph() DBG_RTF(t << "{\\comment (startDotGraph)}" << endl) } -void RTFGenerator::endDotGraph(DotClassGraph &g) +void RTFGenerator::endDotGraph(const DotClassGraph &g) { newParagraph(); @@ -2251,7 +2251,7 @@ void RTFGenerator::startInclDepGraph() DBG_RTF(t << "{\\comment (startInclDepGraph)}" << endl) } -void RTFGenerator::endInclDepGraph(DotInclDepGraph &g) +void RTFGenerator::endInclDepGraph(const DotInclDepGraph &g) { newParagraph(); @@ -2272,7 +2272,7 @@ void RTFGenerator::startGroupCollaboration() { } -void RTFGenerator::endGroupCollaboration(DotGroupCollaboration &) +void RTFGenerator::endGroupCollaboration(const DotGroupCollaboration &) { } @@ -2281,7 +2281,7 @@ void RTFGenerator::startCallGraph() DBG_RTF(t << "{\\comment (startCallGraph)}" << endl) } -void RTFGenerator::endCallGraph(DotCallGraph &g) +void RTFGenerator::endCallGraph(const DotCallGraph &g) { newParagraph(); @@ -2303,7 +2303,7 @@ void RTFGenerator::startDirDepGraph() DBG_RTF(t << "{\\comment (startDirDepGraph)}" << endl) } -void RTFGenerator::endDirDepGraph(DotDirDeps &g) +void RTFGenerator::endDirDepGraph(const DotDirDeps &g) { newParagraph(); |