summaryrefslogtreecommitdiffstats
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
parent#92116#; a cell without content is empty, also if the cell has a empty text:p... (diff)
downloadcore-4dc89386338260bc2b288b5bfbf67fcc3a2982b3.tar.gz
core-4dc89386338260bc2b288b5bfbf67fcc3a2982b3.zip
#65293# exceptions for solaris
-rw-r--r--sc/inc/pageuno.hxx6
-rw-r--r--sc/inc/textuno.hxx12
-rw-r--r--sc/source/ui/unoobj/pageuno.cxx6
-rw-r--r--sc/source/ui/unoobj/textuno.cxx10
4 files changed, 17 insertions, 17 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();
};
diff --git a/sc/source/ui/unoobj/pageuno.cxx b/sc/source/ui/unoobj/pageuno.cxx
index 62b636c06f38..1b0a450f2f2b 100644
--- a/sc/source/ui/unoobj/pageuno.cxx
+++ b/sc/source/ui/unoobj/pageuno.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pageuno.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: nn $ $Date: 2001-03-16 19:49:46 $
+ * last change: $Author: obo $ $Date: 2001-09-13 09:35:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -77,7 +77,7 @@ ScPageObj::ScPageObj( SdrPage* pPage ) :
{
}
-ScPageObj::~ScPageObj()
+ScPageObj::~ScPageObj() throw()
{
}
diff --git a/sc/source/ui/unoobj/textuno.cxx b/sc/source/ui/unoobj/textuno.cxx
index 9a1b75218d70..afa152f32c97 100644
--- a/sc/source/ui/unoobj/textuno.cxx
+++ b/sc/source/ui/unoobj/textuno.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: textuno.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: nn $ $Date: 2001-08-23 17:42:06 $
+ * last change: $Author: obo $ $Date: 2001-09-13 09:35:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -684,7 +684,7 @@ ScCellTextCursor::ScCellTextCursor(ScCellObj& rText) :
rTextObj.acquire();
}
-ScCellTextCursor::~ScCellTextCursor()
+ScCellTextCursor::~ScCellTextCursor() throw()
{
rTextObj.release();
}
@@ -788,7 +788,7 @@ ScHeaderFooterTextCursor::ScHeaderFooterTextCursor(ScHeaderFooterTextObj& rText)
rTextObj.acquire();
}
-ScHeaderFooterTextCursor::~ScHeaderFooterTextCursor()
+ScHeaderFooterTextCursor::~ScHeaderFooterTextCursor() throw()
{
rTextObj.release();
}
@@ -1083,7 +1083,7 @@ ScCellTextObj::ScCellTextObj(ScDocShell* pDocSh, const ScAddress& rP) :
{
}
-ScCellTextObj::~ScCellTextObj()
+ScCellTextObj::~ScCellTextObj() throw()
{
}