summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/xml/xmlannoi.hxx
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2001-01-15 13:48:38 +0000
committerSascha Ballach <sab@openoffice.org>2001-01-15 13:48:38 +0000
commit76b15c5a420e77d4cb6beca859e7ec7f8b5de18f (patch)
treea336aee7ed3a0caecc3acb2f1cc0348c8afe3d46 /sc/source/filter/xml/xmlannoi.hxx
parentremove the include of xmlconti.hxx, because it is no longer necessary (diff)
downloadcore-76b15c5a420e77d4cb6beca859e7ec7f8b5de18f.tar.gz
core-76b15c5a420e77d4cb6beca859e7ec7f8b5de18f.zip
now the annotation contains text:p
Diffstat (limited to 'sc/source/filter/xml/xmlannoi.hxx')
-rw-r--r--sc/source/filter/xml/xmlannoi.hxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/sc/source/filter/xml/xmlannoi.hxx b/sc/source/filter/xml/xmlannoi.hxx
index bb7eddc9439b..b1586a4a6d59 100644
--- a/sc/source/filter/xml/xmlannoi.hxx
+++ b/sc/source/filter/xml/xmlannoi.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlannoi.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:45:15 $
+ * last change: $Author: sab $ $Date: 2001-01-15 14:43:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -67,16 +67,21 @@
#ifndef _XMLOFF_XMLIMP_HXX
#include <xmloff/xmlimp.hxx>
#endif
+#ifndef _RTL_USTRBUF_HXX_
+#include <rtl/ustrbuf.hxx>
+#endif
class ScXMLImport;
class ScXMLTableRowCellContext;
class ScXMLAnnotationContext : public SvXMLImportContext
{
- rtl::OUString sOUText;
+ rtl::OUStringBuffer sOUText;
rtl::OUString sAuthor;
rtl::OUString sCreateDate;
+ sal_Int32 nParagraphCount;
sal_Bool bDisplay;
+ sal_Bool bHasTextP;
ScXMLTableRowCellContext* pCellContext;
const ScXMLImport& GetScImport() const { return (const ScXMLImport&)GetImport(); }