summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorMaxim Monastirsky <momonasmon@gmail.com>2014-11-09 08:04:20 +0200
committerMaxim Monastirsky <momonasmon@gmail.com>2014-11-09 08:04:40 +0200
commit5ee376a42fcd5a38cb6952e69b5d770e3a59d2e8 (patch)
tree28cc451f31266e09fe2826dec728154bc572b28d /svx
parentfb4619e78ec7400c3d29a651fd8589f2e404a13f (diff)
Try to make MSVC happy
Change-Id: I064c58608914f3f179695bf6ec5f7e311162a2fa
Diffstat (limited to 'svx')
-rw-r--r--svx/source/tbxctrls/bulletsnumbering.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/tbxctrls/bulletsnumbering.cxx b/svx/source/tbxctrls/bulletsnumbering.cxx
index 3b72ad9feafc..3f848c274fe7 100644
--- a/svx/source/tbxctrls/bulletsnumbering.cxx
+++ b/svx/source/tbxctrls/bulletsnumbering.cxx
@@ -59,8 +59,8 @@ public:
virtual vcl::Window* createPopupWindow( vcl::Window* pParent ) SAL_OVERRIDE;
// XStatusListener
- virtual void statusChanged( const css::frame::FeatureStateEvent& rEvent )
- throw ( css::uno::RuntimeException ) SAL_OVERRIDE;
+ virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& rEvent )
+ throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XInitialization
virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments )
@@ -184,8 +184,8 @@ vcl::Window* NumberingToolBoxControl::createPopupWindow( vcl::Window* pParent )
return new NumberingPopup( *this, m_xFrame, pParent, mbBulletItem );
}
-void NumberingToolBoxControl::statusChanged( const css::frame::FeatureStateEvent& rEvent )
- throw ( css::uno::RuntimeException )
+void SAL_CALL NumberingToolBoxControl::statusChanged( const css::frame::FeatureStateEvent& rEvent )
+ throw ( css::uno::RuntimeException, std::exception )
{
ToolBox* pToolBox = 0;
sal_uInt16 nId = 0;