summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorArtur Dryomov <artur.dryomov@gmail.com>2013-09-03 12:47:20 +0300
committerAndras Timar <atimar@suse.com>2013-09-03 11:09:19 +0000
commit96eff63b878b53c92375e02910fcf12b8b9df923 (patch)
tree62c92ca23703e87d105195f60b8043f5cdfae802 /sd
parent17fb3ac805acbaf5e503d44ac96d928333164f2d (diff)
Fix HTML closing tags order for slide notes.
Change-Id: Ia6f84965ea0137c58f6bef375e14863d262f7e2b Reviewed-on: https://gerrit.libreoffice.org/5771 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/remotecontrol/ImagePreparer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/remotecontrol/ImagePreparer.cxx b/sd/source/ui/remotecontrol/ImagePreparer.cxx
index 9dca799fd096..112c7da62abf 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 );