Kaydet (Commit) 4266d4e9 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Remove a flag that nobody uses.

Change-Id: Ia18640961e43de28ee08b43358483029db966987
üst 44e8a824
...@@ -358,9 +358,6 @@ private: ...@@ -358,9 +358,6 @@ private:
bool bIsEmbedded; // display/adjust Embedded area? bool bIsEmbedded; // display/adjust Embedded area?
// no SetDirty for ScFormulaCell::CompileTokenArray but at the end of
// ScDocument::CompileAll[WithFormats], CopyScenario, CopyBlockFromClip
bool bNoSetDirty;
// no broadcast, construct no listener during insert from a different // no broadcast, construct no listener during insert from a different
// Doc (per filter or the like ), not until CompileAll / CalcAfterLoad // Doc (per filter or the like ), not until CompileAll / CalcAfterLoad
bool bInsertingFromOtherDoc; bool bInsertingFromOtherDoc;
...@@ -1550,8 +1547,6 @@ public: ...@@ -1550,8 +1547,6 @@ public:
SC_DLLPUBLIC sal_uInt32 GetRangeOverflowType() const { return nRangeOverflowType; } SC_DLLPUBLIC sal_uInt32 GetRangeOverflowType() const { return nRangeOverflowType; }
// for broadcasting/listening // for broadcasting/listening
void SetNoSetDirty( bool bVal ) { bNoSetDirty = bVal; }
bool GetNoSetDirty() const { return bNoSetDirty; }
void SetInsertingFromOtherDoc( bool bVal ) { bInsertingFromOtherDoc = bVal; } void SetInsertingFromOtherDoc( bool bVal ) { bInsertingFromOtherDoc = bVal; }
bool IsInsertingFromOtherDoc() const { return bInsertingFromOtherDoc; } bool IsInsertingFromOtherDoc() const { return bInsertingFromOtherDoc; }
void SetLoadingMedium( bool bVal ); void SetLoadingMedium( bool bVal );
......
...@@ -184,7 +184,6 @@ ScDocument::ScDocument( ScDocumentMode eMode, ...@@ -184,7 +184,6 @@ ScDocument::ScDocument( ScDocumentMode eMode,
bIsUndo( eMode == SCDOCMODE_UNDO ), bIsUndo( eMode == SCDOCMODE_UNDO ),
bIsVisible( false ), bIsVisible( false ),
bIsEmbedded( false ), bIsEmbedded( false ),
bNoSetDirty( false ),
bInsertingFromOtherDoc( false ), bInsertingFromOtherDoc( false ),
bLoadingMedium( false ), bLoadingMedium( false ),
bImportingXML( false ), bImportingXML( false ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment