diff options
author | Noel Power <noel.power@suse.com> | 2012-09-20 15:05:00 +0100 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2012-09-20 15:52:47 +0100 |
commit | 7539a695b801b92d10ff30463a8c08672a258442 (patch) | |
tree | 29f72c48d4a44f6cc0822f968a73f53e60dcd375 /sc/inc | |
parent | b5a1db961372b3fa66724ee580726c67e7683dbc (diff) |
xlsx fix cyclic referenced defined names partially fixes bnc#780296 bnc#781166
Change-Id: Ibad37ac05c608c0211063bfa73931427d48c11f9
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/rangenam.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/rangenam.hxx b/sc/inc/rangenam.hxx index d3703284fa36..64955e1bf7df 100644 --- a/sc/inc/rangenam.hxx +++ b/sc/inc/rangenam.hxx @@ -87,7 +87,7 @@ private: SCCOL mnMaxCol; void CompileRangeData( const String& rSymbol, bool bSetError ); - + void InitCode(); public: typedef ::std::map<sal_uInt16, sal_uInt16> IndexMap; @@ -120,6 +120,7 @@ public: void SetIndex( sal_uInt16 nInd ) { nIndex = nInd; } sal_uInt16 GetIndex() const { return nIndex; } ScTokenArray* GetCode() { return pCode; } + SC_DLLPUBLIC void SetCode( ScTokenArray& ); const ScTokenArray* GetCode() const { return pCode; } SC_DLLPUBLIC sal_uInt16 GetErrCode() const; bool HasReferences() const; |