diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-01-21 19:05:35 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-01-21 19:05:35 (GMT) |
commit | 6a74bbc3ea3e3a0c4f43b7e231e85c08d51d70d5 (patch) | |
tree | c28a8c29b3e53508bef2ee53a06b7c4ac6925fe9 /src/dot.cpp | |
parent | eab6039875f05c8776119469fff0df8761b9b3a2 (diff) | |
download | Doxygen-6a74bbc3ea3e3a0c4f43b7e231e85c08d51d70d5.zip Doxygen-6a74bbc3ea3e3a0c4f43b7e231e85c08d51d70d5.tar.gz Doxygen-6a74bbc3ea3e3a0c4f43b7e231e85c08d51d70d5.tar.bz2 |
Release-1.2.4-20010121
Diffstat (limited to 'src/dot.cpp')
-rw-r--r-- | src/dot.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dot.cpp b/src/dot.cpp index 6e9f823..7e067e5 100644 --- a/src/dot.cpp +++ b/src/dot.cpp @@ -87,13 +87,13 @@ static bool convertMapFile(QTextStream &t,const char *mapName) if (*refPtr!='\0') { t << "doxygen=\"" << refPtr << ":"; - if ((dest=tagDestinationDict[refPtr])) t << *dest << "/"; + if ((dest=Doxygen::tagDestinationDict[refPtr])) t << *dest << "/"; t << "\" "; } t << "href=\""; if (*refPtr!='\0') { - if ((dest=tagDestinationDict[refPtr])) t << *dest << "/"; + if ((dest=Doxygen::tagDestinationDict[refPtr])) t << *dest << "/"; } t << urlPtr << "\" shape=\"rect\" coords=\"" << x1 << "," << y1 << "," << x2 << "," << y2 << "\">" << endl; @@ -693,8 +693,8 @@ DotGfxHierarchyTable::DotGfxHierarchyTable() // build a graph with each class as a node and the inheritance relations // as edges - initClassHierarchy(&classList); - ClassListIterator cli(classList); + initClassHierarchy(&Doxygen::classList); + ClassListIterator cli(Doxygen::classList); ClassDef *cd; for (cli.toLast();(cd=cli.current());--cli) { |