summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2001-09-13 08:38:55 +0000
committerOliver Bolte <obo@openoffice.org>2001-09-13 08:38:55 +0000
commit4dc89386338260bc2b288b5bfbf67fcc3a2982b3 (patch)
treef6b21a3ece86b93ec0b6e3cb3fbed362dc66b41d /sc/inc
parent03632af6e9ba358e5fcbc9bee3c56b0c693d5a22 (diff)
#65293# exceptions for solaris
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/pageuno.hxx6
-rw-r--r--sc/inc/textuno.hxx12
2 files changed, 9 insertions, 9 deletions
diff --git a/sc/inc/pageuno.hxx b/sc/inc/pageuno.hxx
index 2309636fb70f..2fd179416ea8 100644
--- a/sc/inc/pageuno.hxx
+++ b/sc/inc/pageuno.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pageuno.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: nn $ $Date: 2001-03-16 19:49:31 $
+ * last change: $Author: obo $ $Date: 2001-09-13 09:38:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -74,7 +74,7 @@ class ScPageObj : public SvxFmDrawPage
{
public:
ScPageObj( SdrPage* pPage );
- virtual ~ScPageObj();
+ virtual ~ScPageObj() throw();
virtual ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >
_CreateShape( SdrObject *pObj ) const throw();
diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx
index 6b1c8b865005..82047c5c7ba6 100644
--- a/sc/inc/textuno.hxx
+++ b/sc/inc/textuno.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: textuno.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: nn $ $Date: 2001-07-31 17:56:45 $
+ * last change: $Author: obo $ $Date: 2001-09-13 09:38:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -309,7 +309,7 @@ class ScCellTextCursor : public SvxUnoTextCursor
public:
ScCellTextCursor(const ScCellTextCursor& rOther);
ScCellTextCursor(ScCellObj& rText);
- virtual ~ScCellTextCursor();
+ virtual ~ScCellTextCursor() throw();
// SvxUnoTextCursor methods reimplemented here:
virtual ::com::sun::star::uno::Reference< ::com::sun::star::text::XText > SAL_CALL
@@ -337,7 +337,7 @@ private:
public:
ScHeaderFooterTextCursor(const ScHeaderFooterTextCursor& rOther);
ScHeaderFooterTextCursor(ScHeaderFooterTextObj& rText);
- virtual ~ScHeaderFooterTextCursor();
+ virtual ~ScHeaderFooterTextCursor() throw();
// SvxUnoTextCursor methods reimplemented here:
virtual ::com::sun::star::uno::Reference< ::com::sun::star::text::XText > SAL_CALL
@@ -381,7 +381,7 @@ class ScEditEngineTextObj : public ScSimpleEditSourceHelper, public SvxUnoText
{
public:
ScEditEngineTextObj();
- virtual ~ScEditEngineTextObj();
+ virtual ~ScEditEngineTextObj() throw();
void SetText( const String& rStr );
void SetText( const EditTextObject& rTextObject );
@@ -429,7 +429,7 @@ class ScCellTextObj : public ScCellTextData, public SvxUnoText
{
public:
ScCellTextObj(ScDocShell* pDocSh, const ScAddress& rP);
- virtual ~ScCellTextObj();
+ virtual ~ScCellTextObj() throw();
};