Kaydet (Commit) bc02c97d authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Implement WordBasic.FileSave()

Change-Id: Iafb5be16ebb23aa09e0300a77c2f2dbe29b85cad
üst 3ec34d64
...@@ -533,7 +533,8 @@ SwWordBasic::FileOpen( const OUString& Name, const uno::Any& ConfirmConversions, ...@@ -533,7 +533,8 @@ SwWordBasic::FileOpen( const OUString& Name, const uno::Any& ConfirmConversions,
void SAL_CALL void SAL_CALL
SwWordBasic::FileSave() SwWordBasic::FileSave()
{ {
// FIXME save it uno::Reference< frame::XModel > xModel( mpApp->getCurrentDocument(), uno::UNO_SET_THROW );
dispatchRequests(xModel,".uno:Save");
} }
void SAL_CALL void SAL_CALL
......
...@@ -111,7 +111,6 @@ public: ...@@ -111,7 +111,6 @@ public:
// XSinkCaller // XSinkCaller
virtual void SAL_CALL CallSinks( const OUString& Method, css::uno::Sequence< css::uno::Any >& Arguments ) override; virtual void SAL_CALL CallSinks( const OUString& Method, css::uno::Sequence< css::uno::Any >& Arguments ) override;
protected:
virtual css::uno::Reference< css::frame::XModel > getCurrentDocument() override; virtual css::uno::Reference< css::frame::XModel > getCurrentDocument() override;
}; };
#endif // INCLUDED_SW_SOURCE_UI_VBA_VBAAPPLICATION_HXX #endif // INCLUDED_SW_SOURCE_UI_VBA_VBAAPPLICATION_HXX
......
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