diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-20 15:16:43 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-20 20:02:25 +0100 |
commit | 6f9971f3b935f669b39d7a53266950ee92955027 (patch) | |
tree | 776b4d7a4dfac9a95aa8f9ae2285ed33c0a715a9 /toolkit | |
parent | ee376102becc16c0c44d23e5eb2a322aadc45197 (diff) |
WaE: MSVC20082 unreferenced argument
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/inc/toolkit/helper/macros.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/inc/toolkit/helper/macros.hxx b/toolkit/inc/toolkit/helper/macros.hxx index b2acbf28de83..3d59e609c421 100644 --- a/toolkit/inc/toolkit/helper/macros.hxx +++ b/toolkit/inc/toolkit/helper/macros.hxx @@ -176,7 +176,7 @@ void ClassName::disposing( const ::com::sun::star::lang::EventObject& ) throw(:: sMessage += ::rtl::OString( e.Message.getStr(), e.Message.getLength(), RTL_TEXTENCODING_ASCII_US ); \ OSL_FAIL( sMessage.getStr() ); #else - #define DISPLAY_EXCEPTION( ClassName, MethodName, e ) + #define DISPLAY_EXCEPTION( ClassName, MethodName, e ) (void)e; #endif #define IMPL_TABLISTENERMULTIPLEXER_LISTENERMETHOD_BODY_2PARAM( ClassName, InterfaceName, MethodName, ParamType1, ParamType2 ) \ |