summaryrefslogtreecommitdiff
path: root/starmath/inc/node.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r--starmath/inc/node.hxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index bd30531e06d7..b4e5b1db317a 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -186,16 +186,6 @@ public:
bool IsSelected() const {return mbIsSelected;}
void SetSelected(bool Selected = true) {mbIsSelected = Selected;}
-#ifdef DEBUG_ENABLE_DUMPASDOT
- /** The tree as dot graph for graphviz, usable for debugging
- * Convert the output to a image using $ dot graph.gv -Tpng > graph.png
- */
- inline void DumpAsDot(std::ostream &out, OUString* label = NULL) const{
- int id = 0;
- DumpAsDot(out, label, -1, id, -1);
- }
-#endif /* DEBUG_ENABLE_DUMPASDOT */
-
/** Get the parent node of this node */
SmStructureNode* GetParent(){ return mpParentNode; }
const SmStructureNode* GetParent() const { return mpParentNode; }