diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-09-09 00:06:30 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-09-09 00:13:01 +0300 |
commit | 895885652eef980338ce7c9231be3f86f8c770d5 (patch) | |
tree | 42ade6ea62c86a1e988c2c24583c3f9d0106a42f /framework | |
parent | 44d19e119e00e52edd47c01d8d1c3812e8eb4afd (diff) |
Fix non-debug build
Change-Id: I5446c7fec62c1a934b1ffb21fefa1279b932ca09
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/helper/ocomponentenumeration.cxx | 6 | ||||
-rw-r--r-- | framework/source/services/frame.cxx | 24 |
2 files changed, 5 insertions, 25 deletions
diff --git a/framework/source/helper/ocomponentenumeration.cxx b/framework/source/helper/ocomponentenumeration.cxx index c1b3ea885973..1c658732dcd8 100644 --- a/framework/source/helper/ocomponentenumeration.cxx +++ b/framework/source/helper/ocomponentenumeration.cxx @@ -64,11 +64,7 @@ OComponentEnumeration::~OComponentEnumeration() //***************************************************************************************************************** // XEventListener //***************************************************************************************************************** -void SAL_CALL OComponentEnumeration::disposing( const EventObject& -#if OSL_DEBUG_LEVEL > 0 -aEvent -#endif -) throw( RuntimeException ) +void SAL_CALL OComponentEnumeration::disposing( const EventObject& aEvent ) throw( RuntimeException ) { // Ready for multithreading ResetableGuard aGuard( m_aLock ); diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index 9af43fccc673..15a809bf5286 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -2170,11 +2170,7 @@ css::uno::Sequence< css::frame::DispatchInformation > SAL_CALL Frame::getConfigu @onerror - *//*-*****************************************************************************************************/ -void SAL_CALL Frame::windowResized( const css::awt::WindowEvent& -#if OSL_DEBUG_LEVEL > 0 -aEvent -#endif -) throw( css::uno::RuntimeException ) +void SAL_CALL Frame::windowResized( const css::awt::WindowEvent& aEvent ) throw( css::uno::RuntimeException ) { /* UNSAFE AREA --------------------------------------------------------------------------------------------- */ // Check incoming parameter. @@ -2190,11 +2186,7 @@ aEvent } //***************************************************************************************************************** -void SAL_CALL Frame::focusGained( const css::awt::FocusEvent& -#if OSL_DEBUG_LEVEL > 0 -aEvent -#endif -) throw( css::uno::RuntimeException ) +void SAL_CALL Frame::focusGained( const css::awt::FocusEvent& aEvent ) throw( css::uno::RuntimeException ) { /* UNSAFE AREA --------------------------------------------------------------------------------------------- */ // Check incoming parameter. @@ -2230,11 +2222,7 @@ aEvent @onerror - *//*-*****************************************************************************************************/ -void SAL_CALL Frame::windowActivated( const css::lang::EventObject& -#if OSL_DEBUG_LEVEL > 0 -aEvent -#endif -) throw( css::uno::RuntimeException ) +void SAL_CALL Frame::windowActivated( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException ) { /* UNSAFE AREA --------------------------------------------------------------------------------------------- */ // Check incoming parameter. @@ -2257,11 +2245,7 @@ aEvent } //***************************************************************************************************************** -void SAL_CALL Frame::windowDeactivated( const css::lang::EventObject& -#if OSL_DEBUG_LEVEL > 0 -aEvent -#endif -) throw( css::uno::RuntimeException ) +void SAL_CALL Frame::windowDeactivated( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException ) { /* UNSAFE AREA --------------------------------------------------------------------------------------------- */ // Check incoming parameter. |