diff options
author | Mikhail Voitenko <mav@openoffice.org> | 2002-02-22 15:00:56 +0000 |
---|---|---|
committer | Mikhail Voitenko <mav@openoffice.org> | 2002-02-22 15:00:56 +0000 |
commit | 03c0f5262a8c01982ec8b3395b102f1b21047038 (patch) | |
tree | ed8594f8a13a1010fc1957c51b52274406ce82ff /package | |
parent | dbcf1b816c2e017a0d33fcb588b8ddb17eeba587 (diff) |
#97587# adopt to linux
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zippackage/ZipPackage.cxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/package/source/zippackage/ZipPackage.cxx b/package/source/zippackage/ZipPackage.cxx index a3e0339739a4..580cd8c2935f 100644 --- a/package/source/zippackage/ZipPackage.cxx +++ b/package/source/zippackage/ZipPackage.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ZipPackage.cxx,v $ * - * $Revision: 1.76 $ + * $Revision: 1.77 $ * - * last change: $Author: mav $ $Date: 2002-02-19 17:00:09 $ + * last change: $Author: mav $ $Date: 2002-02-22 16:00:56 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -194,9 +194,13 @@ class ActiveDataStreamer : public ::cppu::WeakImplHelper1< XActiveDataStreamer > Reference< XStream > mStream; public: - virtual Reference< XStream > SAL_CALL getStream() { return mStream; } + virtual Reference< XStream > SAL_CALL getStream() + throw( RuntimeException ) + { return mStream; } - virtual void SAL_CALL setStream( const Reference< XStream >& stream ) { mStream = stream; } + virtual void SAL_CALL setStream( const Reference< XStream >& stream ) + throw( RuntimeException ) + { mStream = stream; } }; //=========================================================================== |