Kaydet (Commit) 0a464eba authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1308503 Uncaught exception

Change-Id: I3ee78e7f4e6208523f4f47af974ccff82f6b823d
üst b978b501
......@@ -99,7 +99,7 @@ protected:
// Forwared from XStatusListener (subclasses must override this one to get
// the status updates):
virtual void statusChanged(const css::frame::FeatureStateEvent& Event ) throw (css::uno::RuntimeException);
virtual void statusChanged(const css::frame::FeatureStateEvent& Event ) throw (css::uno::RuntimeException, std::exception);
void StateChanged( StateChangedType nType ) SAL_OVERRIDE;
void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;
......
......@@ -1539,7 +1539,7 @@ void ToolbarMenu::AddStatusListener( const OUString& rCommandURL )
void ToolbarMenu::statusChanged( const ::com::sun::star::frame::FeatureStateEvent& /*Event*/ ) throw ( ::com::sun::star::uno::RuntimeException )
void ToolbarMenu::statusChanged( const ::com::sun::star::frame::FeatureStateEvent& /*Event*/ ) throw ( ::com::sun::star::uno::RuntimeException, std::exception )
{
}
......
......@@ -397,7 +397,7 @@ void ExtrusionDepthWindow::implFillStrings( FieldUnit eUnit )
void ExtrusionDepthWindow::statusChanged(
const ::com::sun::star::frame::FeatureStateEvent& Event
) throw ( ::com::sun::star::uno::RuntimeException )
) throw ( ::com::sun::star::uno::RuntimeException, std::exception )
{
if( Event.FeatureURL.Main.equals( msExtrusionDepth ) )
{
......
......@@ -112,7 +112,7 @@ private:
public:
ExtrusionDepthWindow( svt::ToolboxController& rController, const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rFrame, vcl::Window* pParentWindow );
virtual void statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException ) SAL_OVERRIDE;
virtual void statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
};
class ExtrusionDepthController : public svt::PopupWindowController
......
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