diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2002-01-10 15:00:40 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2002-01-10 15:00:40 +0000 |
commit | ae0cc593f9241154817b1cf4b4dcb2b1a5af1136 (patch) | |
tree | 7652aa4c0c7fd00393c9b901624db485b36b9dc2 /ucbhelper | |
parent | 035697f43aab186426778d9ba98aa506c92b2998 (diff) |
acquire and release must have empty throw statement, not none.
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/workben/myucp/myucp_content.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ucbhelper/workben/myucp/myucp_content.cxx b/ucbhelper/workben/myucp/myucp_content.cxx index 33b2c11b2a1a..2322dd208946 100644 --- a/ucbhelper/workben/myucp/myucp_content.cxx +++ b/ucbhelper/workben/myucp/myucp_content.cxx @@ -2,9 +2,9 @@ * * $RCSfile: myucp_content.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: oj $ $Date: 2002-01-10 15:16:14 $ + * last change: $Author: kso $ $Date: 2002-01-10 16:00:40 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -156,6 +156,7 @@ Content::~Content() // virtual void SAL_CALL Content::acquire() + throw() { ContentImplHelper::acquire(); } @@ -163,6 +164,7 @@ void SAL_CALL Content::acquire() //========================================================================= // virtual void SAL_CALL Content::release() + throw() { ContentImplHelper::release(); } |