[Libreoffice-commits] .: Branch 'libreoffice-3-3-1' - starmath/source

Michael Meeks mmeeks at kemper.freedesktop.org
Thu Feb 10 09:59:10 PST 2011


 starmath/source/visitors.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit e959ec8af33edb13221a89cb253e73b386321fcf
Author: Luke Dixon <6b8b4567 at gmail.com>
Date:   Tue Feb 8 20:15:21 2011 +0000

    Fix for bugs 32759 and 32755 on freedesktop bugzilla
    
    Signed-off-by: Michael Meeks <michael.meeks at novell.com>
    Signed-off-by: Jonas Finnemann Jensen <jopsen at gmail.com>

diff --git a/starmath/source/visitors.cxx b/starmath/source/visitors.cxx
index dc5dd38..7b7dafe 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 );
 }
 


More information about the Libreoffice-commits mailing list