summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lippka <cl@openoffice.org>2001-08-06 12:31:47 +0000
committerChristian Lippka <cl@openoffice.org>2001-08-06 12:31:47 +0000
commit4eb5cb6d68da9327905907b32e0ed82db95c7c45 (patch)
treef50a16252fdb884d5c881193ba70c4ec07381664
parent2e4b9409301aa26740991a7d86565bab27f4485d (diff)
#90330# fixed false exception declaration
-rw-r--r--svx/source/unodraw/unoshtxt.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/unodraw/unoshtxt.cxx b/svx/source/unodraw/unoshtxt.cxx
index 53e9ee48dd90..9eeb47e75b05 100644
--- a/svx/source/unodraw/unoshtxt.cxx
+++ b/svx/source/unodraw/unoshtxt.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: unoshtxt.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: cl $ $Date: 2001-08-05 15:33:50 $
+ * last change: $Author: cl $ $Date: 2001-08-06 13:31:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -189,14 +189,14 @@ SvxTextEditSourceImpl::~SvxTextEditSourceImpl()
//------------------------------------------------------------------------
-void SAL_CALL SvxTextEditSourceImpl::acquire() throw()
+void SAL_CALL SvxTextEditSourceImpl::acquire()
{
osl_incrementInterlockedCount( &maRefCount );
}
//------------------------------------------------------------------------
-void SAL_CALL SvxTextEditSourceImpl::release() throw()
+void SAL_CALL SvxTextEditSourceImpl::release()
{
if( ! osl_decrementInterlockedCount( &maRefCount ) )
delete this;