diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-26 10:58:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-28 19:44:08 +0200 |
commit | ef513fd4b049b214a03fbe6e62a5ea43680a7a9b (patch) | |
tree | 82f2ce93bc8e5fde6dce8685b633c3d643c9f069 /sd/source/ui/remotecontrol/ImagePreparer.cxx | |
parent | 826f1bca40a01f0a249d5b6cbb7c39c11638a060 (diff) |
remove unnecessary use of OString::getStr
Change-Id: I0490efedf459190521f4339854b3394d57765fdb
Reviewed-on: https://gerrit.libreoffice.org/38058
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/remotecontrol/ImagePreparer.cxx')
-rw-r--r-- | sd/source/ui/remotecontrol/ImagePreparer.cxx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sd/source/ui/remotecontrol/ImagePreparer.cxx b/sd/source/ui/remotecontrol/ImagePreparer.cxx index dd50f1f3516a..c765ca6a0c9a 100644 --- a/sd/source/ui/remotecontrol/ImagePreparer.cxx +++ b/sd/source/ui/remotecontrol/ImagePreparer.cxx @@ -98,7 +98,7 @@ void ImagePreparer::sendPreview( sal_uInt32 aSlideNumber ) aBuffer.append( "slide_preview\n" ); - aBuffer.append( OString::number( aSlideNumber ).getStr() ); + aBuffer.append( (sal_Int32)aSlideNumber ); aBuffer.append( "\n" ); aBuffer.append( aEncodedShortString.getStr() ); @@ -175,12 +175,6 @@ void ImagePreparer::sendNotes( sal_uInt32 aSlideNumber ) if ( aNotes.isEmpty() ) return; -// OUStringBuffer aStrBuffer; -// ::sax::Converter::encodeBase64( aStrBuffer, aTemp ); - -// OString aNotes = OUStringToOString( -// aStrBuffer.makeStringAndClear(), RTL_TEXTENCODING_UTF8 ); - if ( !xController->isRunning() ) return; @@ -189,7 +183,7 @@ void ImagePreparer::sendNotes( sal_uInt32 aSlideNumber ) aBuffer.append( "slide_notes\n" ); - aBuffer.append( OString::number( aSlideNumber ).getStr() ); + aBuffer.append( (sal_Int32) aSlideNumber ); aBuffer.append( "\n" ); aBuffer.append( "<html><body>" ); |