summaryrefslogtreecommitdiff
path: root/sc/inc/dbcolect.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-01-14 10:58:41 +0000
committerKurt Zenker <kz@openoffice.org>2005-01-14 10:58:41 +0000
commit1b6f39e8c25ca01c579cb7bb52b1e9b6abe80662 (patch)
tree0869c69717dc06337a59917397d6228e196c1193 /sc/inc/dbcolect.hxx
parent9103919404d1d5c63ca1cd54fbe67f5f48bae7af (diff)
INTEGRATION: CWS dr31 (1.7.138); FILE MERGED
2004/12/17 15:03:09 dr 1.7.138.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented
Diffstat (limited to 'sc/inc/dbcolect.hxx')
-rw-r--r--sc/inc/dbcolect.hxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/sc/inc/dbcolect.hxx b/sc/inc/dbcolect.hxx
index 686b1329be32..9d765eef8a82 100644
--- a/sc/inc/dbcolect.hxx
+++ b/sc/inc/dbcolect.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dbcolect.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2004-08-23 09:23:24 $
+ * last change: $Author: kz $ $Date: 2005-01-14 11:58:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -166,7 +166,6 @@ private:
BYTE nDBType; // enum DBObject (bisher nur dbTable, dbQuery)
USHORT nIndex; // eindeutiger Index fuer Formeln
- USHORT nExportIndex; // used by Xcl export
BOOL bAutoFilter; // AutoFilter? (nicht gespeichert)
BOOL bModified; // wird bei UpdateReference gesetzt/geloescht
@@ -198,7 +197,7 @@ public:
void SetByRow(BOOL bByR) { bByRow = bByR; }
BOOL HasHeader() const { return bHasHeader; }
void SetHeader(BOOL bHasH) { bHasHeader = bHasH; }
- void SetIndex(USHORT nInd) { nIndex = nExportIndex = nInd; }
+ void SetIndex(USHORT nInd) { nIndex = nInd; }
USHORT GetIndex() const { return nIndex; }
BOOL IsDoSize() const { return bDoSize; }
void SetDoSize(BOOL bSet) { bDoSize = bSet; }
@@ -244,10 +243,6 @@ public:
BOOL IsModified() const { return bModified; }
void SetModified(BOOL bMod) { bModified = bMod; }
-
- void SetExportIndex( USHORT nIdx ) { nExportIndex = nIdx; }
- USHORT GetExportIndex() const { return nExportIndex; }
-
};