diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-11-15 15:32:04 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-11-15 15:32:04 +0000 |
commit | bc152d7b475be443bd3a11d6c123b9f26b194fe4 (patch) | |
tree | f2ca08d38a029d9bed954dbcf6e563e573b15df6 /sc/inc/document.hxx | |
parent | dec4d6bc361b33e8c938599052a82774702b6b69 (diff) |
INTEGRATION: CWS calc25 (1.83.74); FILE MERGED
2004/11/03 14:53:50 nn 1.83.74.1: #i31130# store xml overflow flag in document instead of ScXMLImport
Diffstat (limited to 'sc/inc/document.hxx')
-rw-r--r-- | sc/inc/document.hxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index 46c344025907..62f72a58d1b1 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -2,9 +2,9 @@ * * $RCSfile: document.hxx,v $ * - * $Revision: 1.84 $ + * $Revision: 1.85 $ * - * last change: $Author: pjunck $ $Date: 2004-11-03 09:19:01 $ + * last change: $Author: obo $ $Date: 2004-11-15 16:32:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -327,6 +327,8 @@ private: List* pLoadedSymbolStringCellList; // binary file format import of symbol font string cells + sal_uInt32 nRangeOverflowType; // used in (xml) loading for overflow warnings + ScRange aClipRange; ScRange aEmbedRange; ScAddress aCurTextWidthCalcPos; @@ -1395,6 +1397,10 @@ SC_DLLPUBLIC SvNumberFormatter* GetFormatTable() const; BOOL HasMacroCallsAfterLoad(); BOOL CheckMacroWarn(); + void SetRangeOverflowType(sal_uInt32 nType) { nRangeOverflowType = nType; } + sal_Bool HasRangeOverflow() const { return nRangeOverflowType != 0; } + sal_uInt32 GetRangeOverflowType() const { return nRangeOverflowType; } + // fuer Broadcasting/Listening void SetNoSetDirty( BOOL bVal ) { bNoSetDirty = bVal; } BOOL GetNoSetDirty() const { return bNoSetDirty; } |