diff options
-rw-r--r-- | embeddedobj/source/inc/oleembobj.hxx | 1 | ||||
-rw-r--r-- | embeddedobj/source/msole/olepersist.cxx | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/embeddedobj/source/inc/oleembobj.hxx b/embeddedobj/source/inc/oleembobj.hxx index 628a4bcb2089..9fad90fc509a 100644 --- a/embeddedobj/source/inc/oleembobj.hxx +++ b/embeddedobj/source/inc/oleembobj.hxx @@ -245,6 +245,7 @@ protected: bool bSaveAs ) throw ( css::uno::Exception ); #ifdef _WIN32 + /// @throws css::uno::Exception void StoreObjectToStream( css::uno::Reference< css::io::XOutputStream > const & xOutStream ) throw ( css::uno::Exception ); #endif diff --git a/embeddedobj/source/msole/olepersist.cxx b/embeddedobj/source/msole/olepersist.cxx index eb5737db4944..d9bf6d92a647 100644 --- a/embeddedobj/source/msole/olepersist.cxx +++ b/embeddedobj/source/msole/olepersist.cxx @@ -155,6 +155,8 @@ OUString GetNewFilledTempFile_Impl( const uno::Reference< io::XInputStream >& xI return aResult; } #ifdef _WIN32 +/// @throws io::IOException +/// @throws uno::RuntimeException OUString GetNewFilledTempFile_Impl( const uno::Reference< embed::XOptimizedStorage >& xParentStorage, const OUString& aEntryName, const uno::Reference< lang::XMultiServiceFactory >& xFactory ) throw( io::IOException, uno::RuntimeException ) { |