summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-04-30 11:24:29 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-04-30 13:10:45 -0400
commitacc9b2be09442f48e065d3d2aab8e227b610bf20 (patch)
tree1cf46025d8e7b4d46c35ce27d176a17861b2d87b /sc/inc
parentc9aa06260000a3640a5557c2d34be7e2a82d8f91 (diff)
Ensure that modified formula cells are redrawn.
ScFormulaCell::bChanged is responsible for this, though, we should only set it to true for visible cells only. That's a TODO for later. Change-Id: Ic237c45fb271f901320f4843c89710aedd16c906
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/formulacell.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx
index 2a8546f28a2f..2d0d04cc7de8 100644
--- a/sc/inc/formulacell.hxx
+++ b/sc/inc/formulacell.hxx
@@ -192,7 +192,7 @@ public:
void FindRangeNamesInUse(std::set<sal_uInt16>& rIndexes) const;
bool IsSubTotal() const { return bSubTotal; }
bool IsChanged() const;
- void ResetChanged();
+ void SetChanged(bool b);
bool IsEmpty(); // formula::svEmptyCell result
// display as empty string if formula::svEmptyCell result
bool IsEmptyDisplayedAsString();