[Libreoffice-commits] core.git: sd/source

Artur Dryomov artur.dryomov at gmail.com
Tue Sep 3 04:09:40 PDT 2013


 sd/source/ui/remotecontrol/ImagePreparer.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 96eff63b878b53c92375e02910fcf12b8b9df923
Author: Artur Dryomov <artur.dryomov at gmail.com>
Date:   Tue Sep 3 12:47:20 2013 +0300

    Fix HTML closing tags order for slide notes.
    
    Change-Id: Ia6f84965ea0137c58f6bef375e14863d262f7e2b
    Reviewed-on: https://gerrit.libreoffice.org/5771
    Reviewed-by: Andras Timar <atimar at suse.com>
    Tested-by: Andras Timar <atimar at suse.com>

diff --git a/sd/source/ui/remotecontrol/ImagePreparer.cxx b/sd/source/ui/remotecontrol/ImagePreparer.cxx
index 9dca799..112c7da 100644
--- a/sd/source/ui/remotecontrol/ImagePreparer.cxx
+++ b/sd/source/ui/remotecontrol/ImagePreparer.cxx
@@ -195,7 +195,7 @@ void ImagePreparer::sendNotes( sal_uInt32 aSlideNumber )
 
     aBuffer.append( "<html><body>" );
     aBuffer.append( aNotes );
-    aBuffer.append( "</html></body>" );
+    aBuffer.append( "</body></html>" );
     aBuffer.append( "\n\n" );
     pTransmitter->addMessage( aBuffer.makeStringAndClear(),
         Transmitter::PRIORITY_LOW );


More information about the Libreoffice-commits mailing list