diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-08-06 14:59:08 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-08-06 15:05:26 +0200 |
commit | 4a6ced8f94afba28e7e3a00573db2440b876d7d9 (patch) | |
tree | 9006a068c73e210e09e688ad15243fc87d1ab4a4 /sd | |
parent | 7040497038ce7dc3723887a28a4007cc9b5c942d (diff) |
warning C4101: unreferenced local variable
Change-Id: I0eac170f7fafebb438b1516fa271cc4971a9704d
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/remotecontrol/Receiver.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/remotecontrol/Server.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/remotecontrol/Receiver.cxx b/sd/source/ui/remotecontrol/Receiver.cxx index d7c97bbe9951..8cdedb71f3f0 100644 --- a/sd/source/ui/remotecontrol/Receiver.cxx +++ b/sd/source/ui/remotecontrol/Receiver.cxx @@ -55,7 +55,7 @@ void Receiver::parseCommand( std::vector<OString> aCommand ) xSlideShowController = uno::Reference<presentation::XSlideShowController>( xPresentation->getController(), uno::UNO_QUERY_THROW ); } - catch ( com::sun::star::uno::RuntimeException &e ) + catch (uno::RuntimeException &) { fprintf( stderr, "Error in retrieving Controller\n" ); //return; diff --git a/sd/source/ui/remotecontrol/Server.cxx b/sd/source/ui/remotecontrol/Server.cxx index 8371728a1323..1550b579dc82 100644 --- a/sd/source/ui/remotecontrol/Server.cxx +++ b/sd/source/ui/remotecontrol/Server.cxx @@ -54,7 +54,7 @@ void RemoteServer::listenThread() presentationStarted( xPresentation->getController() ); } } - catch ( com::sun::star::uno::RuntimeException &e ) + catch (uno::RuntimeException &) { } |