summaryrefslogtreecommitdiff
path: root/starmath/inc/node.hxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2011-08-31 17:02:17 +0200
committerLuboš Luňák <l.lunak@suse.cz>2011-09-01 14:06:36 +0200
commita3b2fdcde2c577495b88941e56d4cd2aa82034dc (patch)
treedd8bfdaa738d3af810eb85414f70c701e8ad0ab2 /starmath/inc/node.hxx
parentcd0f9f31a2eb400e4b028eaddbf9b16d94ad5572 (diff)
revert accessors for SmUnHorNode, factorial has it the other way around
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r--starmath/inc/node.hxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index e39046308345..07aca32eaa29 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -750,11 +750,6 @@ public:
virtual void Arrange(const OutputDevice &rDev, const SmFormat &rFormat);
void Accept(SmVisitor* pVisitor);
-
- SmMathSymbolNode* Symbol();
- const SmMathSymbolNode* Symbol() const;
- SmNode* Operand();
- const SmNode* Operand() const;
};
@@ -1285,25 +1280,6 @@ inline const SmNode* SmRootNode::Body() const
return const_cast< SmRootNode* >( this )->Body();
}
-inline SmMathSymbolNode* SmUnHorNode::Symbol()
-{
- OSL_ASSERT( GetNumSubNodes() > 0 && GetSubNode( 0 )->GetType() == NMATH );
- return static_cast< SmMathSymbolNode* >( GetSubNode( 0 ));
-}
-inline const SmMathSymbolNode* SmUnHorNode::Symbol() const
-{
- return const_cast< SmUnHorNode* >( this )->Symbol();
-}
-inline SmNode* SmUnHorNode::Operand()
-{
- OSL_ASSERT( GetNumSubNodes() > 1 );
- return GetSubNode( 1 );
-}
-inline const SmNode* SmUnHorNode::Operand() const
-{
- return const_cast< SmUnHorNode* >( this )->Operand();
-}
-
inline SmMathSymbolNode* SmBinHorNode::Symbol()
{
OSL_ASSERT( GetNumSubNodes() > 1 && GetSubNode( 1 )->GetType() == NMATH );