summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-08-11 14:07:47 +0000
committerOliver Bolte <obo@openoffice.org>2004-08-11 14:07:47 +0000
commitdc07bc422ffc011a59a1ab894a74e25b372fc6e2 (patch)
tree2df8f0eef2157d7e9e7b77fabb28cb0370ad5202 /starmath
parent4237ec7698391ac25becaa28b6f19dcba78bfcdb (diff)
INTEGRATION: CWS tleamisc (1.31.26); FILE MERGED
2004/07/08 09:41:21 tl 1.31.26.1: #i30394# removed/ifdef'd unused code
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/node.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index cd1118691ead..c983c9e0e6db 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: node.cxx,v $
*
- * $Revision: 1.31 $
+ * $Revision: 1.32 $
*
- * last change: $Author: obo $ $Date: 2004-01-20 13:24:58 $
+ * last change: $Author: obo $ $Date: 2004-08-11 15:07:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -431,10 +431,10 @@ void SmNode::Prepare(const SmFormat &rFormat, const SmDocShell &rDocShell)
}
+#if OSL_DEBUG_LEVEL > 1
void SmNode::ToggleDebug() const
// toggle 'bIsDebug' in current subtree
{
-#if OSL_DEBUG_LEVEL > 1
SmNode *pThis = (SmNode *) this;
pThis->bIsDebug = bIsDebug ? FALSE : TRUE;
@@ -444,8 +444,8 @@ void SmNode::ToggleDebug() const
for (USHORT i = 0; i < nSize; i++)
if (pNode = pThis->GetSubNode(i))
pNode->ToggleDebug();
-#endif
}
+#endif
void SmNode::Move(const Point& rPosition)