diff options
author | Peter Foley <pefoley2@verizon.net> | 2013-03-30 15:34:22 -0400 |
---|---|---|
committer | Peter Foley <pefoley2@verizon.net> | 2013-03-30 16:55:25 -0400 |
commit | 8ffb20747c77e5875237a9bceca28f4cb4ec9bb3 (patch) | |
tree | a4adae652ac22e3d9021fb9b68dda8b1dbe8488d /io/source | |
parent | 761af309529d877e1b365fdcdb2fee4bb9ee377f (diff) |
fix loplugin unused warnings
Change-Id: I23fc6bf62e74f192f77c74ed48d5276737375f3c
Diffstat (limited to 'io/source')
-rw-r--r-- | io/source/stm/opump.cxx | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/io/source/stm/opump.cxx b/io/source/stm/opump.cxx index 74b3869a3045..e1ca00d93163 100644 --- a/io/source/stm/opump.cxx +++ b/io/source/stm/opump.cxx @@ -20,7 +20,7 @@ #include <stdio.h> -#include <osl/diagnose.h> +#include <sal/log.hxx> #include <com/sun/star/io/XActiveDataSource.hpp> #include <com/sun/star/io/XActiveDataSink.hpp> @@ -48,10 +48,6 @@ using namespace com::sun::star::lang; using namespace com::sun::star::registry; using namespace com::sun::star::io; -using ::rtl::OUString; -using ::rtl::OUStringToOString; -using ::rtl::OString; - #include "factreg.hxx" namespace io_stm { @@ -137,8 +133,7 @@ void Pump::fireError( const Any & exception ) } catch ( const RuntimeException &e ) { - OString sMessage = OUStringToOString( e.Message , RTL_TEXTENCODING_ASCII_US ); - OSL_ENSURE( !"com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners", sMessage.getStr() ); + SAL_WARN("io.streams","com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners" << e.Message); } } } @@ -166,8 +161,7 @@ void Pump::fireClose() } catch ( const RuntimeException &e ) { - OString sMessage = OUStringToOString( e.Message , RTL_TEXTENCODING_ASCII_US ); - OSL_ENSURE( !"com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners", sMessage.getStr() ); + SAL_WARN("io.streams","com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners" << e.Message); } } } @@ -184,8 +178,7 @@ void Pump::fireStarted() } catch ( const RuntimeException &e ) { - OString sMessage = OUStringToOString( e.Message , RTL_TEXTENCODING_ASCII_US ); - OSL_ENSURE( !"com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners", sMessage.getStr() ); + SAL_WARN("io.streams","com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners" << e.Message); } } } @@ -201,8 +194,7 @@ void Pump::fireTerminated() } catch ( const RuntimeException &e ) { - OString sMessage = OUStringToOString( e.Message , RTL_TEXTENCODING_ASCII_US ); - OSL_ENSURE( !"com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners", sMessage.getStr() ); + SAL_WARN("io.streams","com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners" << e.Message); } } } @@ -308,8 +300,7 @@ void Pump::run() { // we are the last on the stack. // this is to avoid crashing the program, when e.g. a bridge crashes - OString sMessage = OUStringToOString( e.Message , RTL_TEXTENCODING_ASCII_US ); - OSL_ENSURE( !"com.sun.star.comp.stoc.Pump: unexpected exception", sMessage.getStr() ); + SAL_WARN("io.streams","com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners" << e.Message); } } |