From ae0cc593f9241154817b1cf4b4dcb2b1a5af1136 Mon Sep 17 00:00:00 2001 From: Kai Sommerfeld Date: Thu, 10 Jan 2002 15:00:40 +0000 Subject: [PATCH] acquire and release must have empty throw statement, not none. --- ucbhelper/workben/myucp/myucp_content.cxx | 6 ++++-- 1 file 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(); }