acquire and release must have empty throw statement, not none.

This commit is contained in:
Kai Sommerfeld 2002-01-10 15:00:40 +00:00
parent 035697f43a
commit ae0cc593f9

View file

@ -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();
}