starmath: Drop unused definition

Change-Id: Ifb91d3a913d6fe3f92ef93bd0e25b8c6152727f3
Reviewed-on: https://gerrit.libreoffice.org/26872
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
This commit is contained in:
Takeshi Abe
2016-07-02 15:30:16 +09:00
parent 147bf38036
commit bb01a3536d
2 changed files with 1 additions and 6 deletions

View File

@@ -168,7 +168,7 @@ public:
void Move(const Point &rPosition);
void MoveTo(const Point &rPosition) { Move(rPosition - GetTopLeft()); }
virtual void Arrange(OutputDevice &rDev, const SmFormat &rFormat);
virtual void Arrange(OutputDevice &rDev, const SmFormat &rFormat) = 0;
virtual void CreateTextFromNode(OUString &rText);
virtual void GetAccessibleText( OUStringBuffer &rText ) const = 0;

View File

@@ -252,11 +252,6 @@ void SmNode::Move(const Point& rPosition)
}
void SmNode::Arrange(OutputDevice &rDev, const SmFormat &rFormat)
{
ForEachNonNull(this, [&rDev, &rFormat](SmNode *pNode){pNode->Arrange(rDev, rFormat);});
}
void SmNode::CreateTextFromNode(OUString &rText)
{
sal_uInt16 nSize = GetNumSubNodes();