summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/XMLTableShapeResizer.hxx
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2001-03-20 15:19:41 +0000
committerSascha Ballach <sab@openoffice.org>2001-03-20 15:19:41 +0000
commit72535ada7635a7fad587527511bd8c507ba85bae (patch)
tree2d7c03b5ff587bc85bd82efae826cbcf68e6f867 /sc/source/filter/xml/XMLTableShapeResizer.hxx
parentccf0cbc467a247fbefe71644ed09214e1d1faf49 (diff)
#85178#, now I remember the shape position by myself
Diffstat (limited to 'sc/source/filter/xml/XMLTableShapeResizer.hxx')
-rw-r--r--sc/source/filter/xml/XMLTableShapeResizer.hxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/sc/source/filter/xml/XMLTableShapeResizer.hxx b/sc/source/filter/xml/XMLTableShapeResizer.hxx
index 87f5e15f9c2a..f7d4e257094c 100644
--- a/sc/source/filter/xml/XMLTableShapeResizer.hxx
+++ b/sc/source/filter/xml/XMLTableShapeResizer.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLTableShapeResizer.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: sab $ $Date: 2001-02-05 13:43:01 $
+ * last change: $Author: sab $ $Date: 2001-03-20 16:19:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -82,8 +82,10 @@ struct ScMyToResizeShape
com::sun::star::uno::Reference <com::sun::star::drawing::XShape> xShape;
com::sun::star::table::CellAddress aEndCell;
com::sun::star::table::CellAddress aStartCell;
- sal_Int32 nX;
- sal_Int32 nY;
+ sal_Int32 nStartX;
+ sal_Int32 nStartY;
+ sal_Int32 nEndX;
+ sal_Int32 nEndY;
};
typedef std::vector<ScMyToResizeShape> ScMyToResizeShapes;
@@ -99,7 +101,7 @@ public:
void AddShape(com::sun::star::uno::Reference <com::sun::star::drawing::XShape>& rShape,
com::sun::star::table::CellAddress& rStartAddress,
com::sun::star::table::CellAddress& rEndAddress,
- sal_Int32 nX, sal_Int32 nY);
+ sal_Int32 nStartX, sal_Int32 nStartY, sal_Int32 nEndX, sal_Int32 nEndY);
void ResizeShapes(::com::sun::star::uno::Reference< ::com::sun::star::sheet::XSpreadsheet > xSheet);
};