diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-08-12 16:26:14 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-08-12 16:26:14 (GMT) |
commit | eed6800521ab6f21c41f485820ec1ee2def42e94 (patch) | |
tree | 4c0dd6f4a7ff503dd3cacaa8e6156c9975645e66 /src/dot.h | |
parent | 0c6e5ac9eab4ff31bb5650ac2faf9f6c5fc46e68 (diff) | |
download | Doxygen-eed6800521ab6f21c41f485820ec1ee2def42e94.zip Doxygen-eed6800521ab6f21c41f485820ec1ee2def42e94.tar.gz Doxygen-eed6800521ab6f21c41f485820ec1ee2def42e94.tar.bz2 |
Release-1.2.9-20010812
Diffstat (limited to 'src/dot.h')
-rw-r--r-- | src/dot.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,7 +30,7 @@ enum GraphOutputFormat { GIF , EPS }; struct EdgeInfo { - enum Colors { Blue=0, Green=1, Red=2, Black=3, Grey=4 }; + enum Colors { Blue=0, Green=1, Red=2, Purple=3, Grey=4, Orange=5 }; enum Styles { Solid=0, Dashed=1 }; EdgeInfo() : m_color(0), m_style(0), m_labColor(0) {} ~EdgeInfo() {} @@ -60,7 +60,7 @@ class DotNode DotNode(int n,const char *lab,const char *url,int distance = 0,bool rootNode=FALSE); ~DotNode(); void addChild(DotNode *n, - int edgeColor=EdgeInfo::Black, + int edgeColor=EdgeInfo::Purple, int edgeStyle=EdgeInfo::Solid, const char *edgeLab=0, const char *edgeURL=0, |