Kaydet (Commit) 5ee376a4 authored tarafından Maxim Monastirsky's avatar Maxim Monastirsky

Try to make MSVC happy

Change-Id: I064c58608914f3f179695bf6ec5f7e311162a2fa
üst fb4619e7
...@@ -59,8 +59,8 @@ public: ...@@ -59,8 +59,8 @@ public:
virtual vcl::Window* createPopupWindow( vcl::Window* pParent ) SAL_OVERRIDE; virtual vcl::Window* createPopupWindow( vcl::Window* pParent ) SAL_OVERRIDE;
// XStatusListener // XStatusListener
virtual void statusChanged( const css::frame::FeatureStateEvent& rEvent ) virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& rEvent )
throw ( css::uno::RuntimeException ) SAL_OVERRIDE; throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XInitialization // XInitialization
virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments )
...@@ -184,8 +184,8 @@ vcl::Window* NumberingToolBoxControl::createPopupWindow( vcl::Window* pParent ) ...@@ -184,8 +184,8 @@ vcl::Window* NumberingToolBoxControl::createPopupWindow( vcl::Window* pParent )
return new NumberingPopup( *this, m_xFrame, pParent, mbBulletItem ); return new NumberingPopup( *this, m_xFrame, pParent, mbBulletItem );
} }
void NumberingToolBoxControl::statusChanged( const css::frame::FeatureStateEvent& rEvent ) void SAL_CALL NumberingToolBoxControl::statusChanged( const css::frame::FeatureStateEvent& rEvent )
throw ( css::uno::RuntimeException ) throw ( css::uno::RuntimeException, std::exception )
{ {
ToolBox* pToolBox = 0; ToolBox* pToolBox = 0;
sal_uInt16 nId = 0; sal_uInt16 nId = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment