summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/undoblk.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2013-10-22 22:16:20 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-10-30 19:37:53 -0400
commit82b6427174692248f73f1b99f19faf46a13d3e4f (patch)
treefbd89cc691fe661ecf361ee20e16d019265d84e8 /sc/source/ui/inc/undoblk.hxx
parented4f0a52f0110557f86a63d9758a71c6b2e09e06 (diff)
Use enum for table op mode.
Change-Id: I51e110fb0a2b72689f529d7094389cc3e20dfbe0
Diffstat (limited to 'sc/source/ui/inc/undoblk.hxx')
-rw-r--r--sc/source/ui/inc/undoblk.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/source/ui/inc/undoblk.hxx b/sc/source/ui/inc/undoblk.hxx
index 129e35ad4ddf..1b10216b3ebd 100644
--- a/sc/source/ui/inc/undoblk.hxx
+++ b/sc/source/ui/inc/undoblk.hxx
@@ -24,6 +24,7 @@
#include "viewutil.hxx"
#include "spellparam.hxx"
#include "cellmergeoption.hxx"
+#include "paramisc.hxx"
#include <boost/shared_ptr.hpp>
#include <boost/scoped_ptr.hpp>
@@ -527,7 +528,7 @@ public:
const ScRefAddress& rFormulaEnd,
const ScRefAddress& rRowCell,
const ScRefAddress& rColCell,
- sal_uInt8 nMode );
+ ScTabOpParam::Mode eMode );
virtual ~ScUndoTabOp();
virtual void Undo();
@@ -544,7 +545,7 @@ private:
ScRefAddress theFormulaEnd;
ScRefAddress theRowCell;
ScRefAddress theColCell;
- sal_uInt8 nMode;
+ ScTabOpParam::Mode meMode;
};