diff options
author | Sascha Ballach <sab@openoffice.org> | 2001-06-12 11:53:53 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2001-06-12 11:53:53 +0000 |
commit | adce12e086f76416956fa71dd17542a1f007fa58 (patch) | |
tree | 24b5b6c04cbda4ab9985b68fbfc471ccf89076a2 /sc/inc/editsrc.hxx | |
parent | e8994e4d87ad8039e39c975fcad860b98280063b (diff) |
#79771#; XActionLockable added
Diffstat (limited to 'sc/inc/editsrc.hxx')
-rw-r--r-- | sc/inc/editsrc.hxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sc/inc/editsrc.hxx b/sc/inc/editsrc.hxx index 6ae7365f7..9fdd2d498 100644 --- a/sc/inc/editsrc.hxx +++ b/sc/inc/editsrc.hxx @@ -2,9 +2,9 @@ * * $RCSfile: editsrc.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: nn $ $Date: 2001-06-07 19:05:35 $ + * last change: $Author: sab $ $Date: 2001-06-12 12:51:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -127,6 +127,8 @@ class ScSharedCellEditSource : public SvxEditSource { private: ScCellTextData* pCellTextData; + sal_Bool bDoUpdateData : 1; + sal_Bool bDirty : 1; protected: ScCellTextData* GetCellTextData() const { return pCellTextData; } // for ScCellEditSource @@ -141,6 +143,9 @@ public: virtual SvxEditSource* Clone() const; virtual SvxTextForwarder* GetTextForwarder(); virtual void UpdateData(); + + void SetDoUpdateData(sal_Bool bValue); + sal_Bool IsDirty() { return bDirty; } }; // ScCellEditSource with local copy of ScCellTextData is used by ScCellFieldsObj, ScCellFieldObj |