summaryrefslogtreecommitdiff
path: root/sc/inc/userdat.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-06-04 09:17:44 +0000
committerOliver Bolte <obo@openoffice.org>2004-06-04 09:17:44 +0000
commitd73c7be6af0a3e864cba73a5119dcb5bdeaff210 (patch)
tree4238cf22826b193022553af9472307b45e0da303 /sc/inc/userdat.hxx
parent8e505218815997bf0c122bda707de91bc4a4ee19 (diff)
INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED
2004/02/04 11:26:27 er 1.1.1.1.346.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2003/11/28 19:47:28 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx
Diffstat (limited to 'sc/inc/userdat.hxx')
-rw-r--r--sc/inc/userdat.hxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/sc/inc/userdat.hxx b/sc/inc/userdat.hxx
index 63c0e08d2343..f6b818f728cd 100644
--- a/sc/inc/userdat.hxx
+++ b/sc/inc/userdat.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: userdat.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:44:50 $
+ * last change: $Author: obo $ $Date: 2004-06-04 10:17:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -74,6 +74,10 @@
#include "global.hxx"
#endif
+#ifndef SC_ADDRESS_HXX
+#include "address.hxx"
+#endif
+
//-------------------------------------------------------------------------
@@ -101,7 +105,7 @@ class ScDrawObjData : public SdrObjUserData
virtual void WriteData(SvStream& rOut);
virtual void ReadData(SvStream& rIn);
public:
- ScTripel aStt, aEnd;
+ ScAddress aStt, aEnd;
BOOL bValidStart, bValidEnd;
ScDrawObjData();
ScDrawObjData( const ScDrawObjData& );