summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorLuke Dixon <6b8b4567@gmail.com>2011-02-08 20:15:21 +0000
committerMichael Meeks <michael.meeks@novell.com>2011-02-10 13:06:07 +0000
commit51b3451da4c928647efbeb404ac7cc89a38a09d4 (patch)
tree49f40a3747de8374331964164fd4077e2cfa8191 /starmath
parent9ff42ec6fcbf4d6392104303d6437d9ef5d3d8d0 (diff)
Fix for bugs 32759 and 32755 on freedesktop bugzilla
Signed-off-by: Michael Meeks <michael.meeks@novell.com>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/visitors.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/starmath/source/visitors.cxx b/starmath/source/visitors.cxx
index dc5dd3834f21..7b7dafe7196f 100644
--- a/starmath/source/visitors.cxx
+++ b/starmath/source/visitors.cxx
@@ -2131,7 +2131,7 @@ void SmNodeToTextVisitor::Visit( SmTableNode* pNode )
LineToText( it.Current( ) );
if( it.Next( ) ) {
Separate( );
- Append( "## " );
+ Append( "# " );
}else
break;
}
@@ -2447,7 +2447,6 @@ void SmNodeToTextVisitor::Visit( SmTextNode* pNode )
void SmNodeToTextVisitor::Visit( SmSpecialNode* pNode )
{
- Append( "%" );
Append( pNode->GetToken( ).aText );
}