diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-12-15 22:16:01 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-12-15 22:24:00 -0500 |
commit | 017d16bdc2b02af03a9c08bb162229ba391dfd6a (patch) | |
tree | 4c4db8ffee7374cf0a1571b01696d2b4fa54e298 /sc/inc | |
parent | 990dbcab759265de1497b15a93e53a5fe81ff48d (diff) |
Reduce the size of ScFormulaCell by packing the matrix flag value.
Change-Id: I07ee4f03ba74415c11188f7b63879ccad542537c
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/formulacell.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx index 86b8045ee1d6..0ed021f6b756 100644 --- a/sc/inc/formulacell.hxx +++ b/sc/inc/formulacell.hxx @@ -129,8 +129,8 @@ private: ScFormulaCell* pPreviousTrack; ScFormulaCell* pNextTrack; sal_uInt16 nSeenInIteration; // Iteration cycle in which the cell was last encountered - sal_uInt8 cMatrixFlag; // One of ScMatrixMode short nFormatType; + sal_uInt8 cMatrixFlag : 2; // One of ScMatrixMode bool bDirty : 1; // Must be (re)calculated bool bChanged : 1; // Whether something changed regarding display/representation bool bRunning : 1; // Already interpreting right now |