diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-01-14 10:58:54 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-01-14 10:58:54 +0000 |
commit | 3393bcc9232bc8ee9fcc628f9e5a41b44bb9a37f (patch) | |
tree | 42112668743ab4a3a2f3a3daaaf2fea68c07b06b | |
parent | 8c6a3157baf830abe5cb29671159dc5f78cb8699 (diff) |
INTEGRATION: CWS dr31 (1.7.32); FILE MERGED
2004/12/17 15:03:09 dr 1.7.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented
-rw-r--r-- | sc/inc/rangenam.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sc/inc/rangenam.hxx b/sc/inc/rangenam.hxx index 21469d8f5..1ec3547b9 100644 --- a/sc/inc/rangenam.hxx +++ b/sc/inc/rangenam.hxx @@ -2,9 +2,9 @@ * * $RCSfile: rangenam.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: rt $ $Date: 2004-11-09 14:58:46 $ + * last change: $Author: kz $ $Date: 2005-01-14 11:58:54 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -116,7 +116,6 @@ private: RangeType eType; ScDocument* pDoc; USHORT nIndex; - USHORT nExportIndex; BOOL bModified; // wird bei UpdateReference gesetzt/geloescht friend class ScRangeName; @@ -155,10 +154,8 @@ public: const String& GetName( void ) const { return aName; } ScAddress GetPos() const { return aPos; } // Der Index muss eindeutig sein. Ist er 0, wird ein neuer Index vergeben - void SetIndex( USHORT nInd ) { nIndex = nExportIndex = nInd; } + void SetIndex( USHORT nInd ) { nIndex = nInd; } const USHORT GetIndex() const { return nIndex; } - void SetExportIndex( USHORT nInd ) { nExportIndex = nInd; } - const USHORT GetExportIndex() const { return nExportIndex; } ScTokenArray* GetCode() { return pCode; } USHORT GetErrCode(); BOOL HasReferences() const; |