summaryrefslogtreecommitdiff
path: root/sc/inc/types.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-05-24 11:52:18 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-06-24 16:51:25 -0400
commitc008dc483f8c6840803983e7e351cec6fdd32070 (patch)
tree7c88eeabde57ea4a3c1a760d1c02ea2fd37bd721 /sc/inc/types.hxx
parent75dec25730c88bdb8eb5e2a3f92689460fa89d29 (diff)
Switch to using multi_type_vector for cell storage.
The old style cell storage is no more. Currently the code is buildable, but crashes during unit test. Change-Id: Ie688e22e95c7fb02b9e97b23df0fc1883a97945f
Diffstat (limited to 'sc/inc/types.hxx')
-rw-r--r--sc/inc/types.hxx16
1 files changed, 14 insertions, 2 deletions
diff --git a/sc/inc/types.hxx b/sc/inc/types.hxx
index 9654271c4887..629ab720f728 100644
--- a/sc/inc/types.hxx
+++ b/sc/inc/types.hxx
@@ -7,8 +7,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
-#ifndef __SC_TYPES_HXX__
-#define __SC_TYPES_HXX__
+#ifndef SC_TYPES_HXX
+#define SC_TYPES_HXX
#include <boost/intrusive_ptr.hpp>
@@ -36,6 +36,18 @@ enum ScFormulaVectorState
FormulaVectorUnknown
};
+namespace sc {
+
+const sal_uInt16 MatrixEdgeNothing = 0;
+const sal_uInt16 MatrixEdgeInside = 1;
+const sal_uInt16 MatrixEdgeBottom = 2;
+const sal_uInt16 MatrixEdgeLeft = 4;
+const sal_uInt16 MatrixEdgeTop = 8;
+const sal_uInt16 MatrixEdgeRight = 16;
+const sal_uInt16 MatrixEdgeOpen = 32;
+
+}
+
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */