summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/XMLExportIterator.hxx
diff options
context:
space:
mode:
authorDaniel Rentz <dr@openoffice.org>2001-04-05 09:57:41 +0000
committerDaniel Rentz <dr@openoffice.org>2001-04-05 09:57:41 +0000
commit6fc022e12c8d306a9c3d49e63e600daba5363a65 (patch)
treef1652e1ed17a49c66aa0c9877f6ca7931f603790 /sc/source/filter/xml/XMLExportIterator.hxx
parentb0322338813a2a5293e488d201a059d4299c5d0f (diff)
new attribute for table:cell-range-source: table:refresh-delay
Diffstat (limited to 'sc/source/filter/xml/XMLExportIterator.hxx')
-rw-r--r--sc/source/filter/xml/XMLExportIterator.hxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/sc/source/filter/xml/XMLExportIterator.hxx b/sc/source/filter/xml/XMLExportIterator.hxx
index 482348f84f78..4bd009016050 100644
--- a/sc/source/filter/xml/XMLExportIterator.hxx
+++ b/sc/source/filter/xml/XMLExportIterator.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLExportIterator.hxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: sab $ $Date: 2001-02-28 08:19:33 $
+ * last change: $Author: dr $ $Date: 2001-04-05 10:57:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -181,6 +181,9 @@ struct ScMyAreaLink
::rtl::OUString sURL;
::rtl::OUString sSourceStr;
::com::sun::star::table::CellRangeAddress aDestRange;
+ sal_Int32 nRefresh;
+
+ inline ScMyAreaLink() : nRefresh( 0 ) {}
inline sal_Int32 GetColCount() const { return aDestRange.EndColumn - aDestRange.StartColumn + 1; }
inline sal_Int32 GetRowCount() const { return aDestRange.EndRow - aDestRange.StartRow + 1; }
@@ -194,7 +197,7 @@ typedef ::std::list< ScMyAreaLink > ScMyAreaLinkList;
class ScMyAreaLinksContainer : ScMyIteratorBase
{
private:
- ScMyAreaLinkList aAreaLinkList;
+ ScMyAreaLinkList aAreaLinkList;
protected:
virtual sal_Bool GetFirstAddress( ::com::sun::star::table::CellAddress& rCellAddress );
public: