diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-24 16:05:55 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-25 08:56:14 +0200 |
commit | abf60c4a0fd111985891e2faa30a1e32799fdf9c (patch) | |
tree | b83b66c7457b8e221a01dfe3808adc918c41e6b9 /include/editeng/editeng.hxx | |
parent | 6cb56b551bc1e30a887d8a333d70567cad23aa9e (diff) |
convert EE_CNTRL constants to enum class
there were a couple of lines in SC and SW where the code was using a
EV_CNTRL constant. I switched it to used the same-valued constant from
EE_CNTRL
Change-Id: I027183cc3b6e700bf365d48833e37eddc9b50f04
Diffstat (limited to 'include/editeng/editeng.hxx')
-rw-r--r-- | include/editeng/editeng.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/editeng/editeng.hxx b/include/editeng/editeng.hxx index b9bbc91a698c..ba253f46afdb 100644 --- a/include/editeng/editeng.hxx +++ b/include/editeng/editeng.hxx @@ -28,8 +28,9 @@ #include <rsc/rscsfx.hxx> #include <editeng/editdata.hxx> -#include <i18nlangtag/lang.h> +#include <editeng/editstat.hxx> #include <editeng/editengdllapi.h> +#include <i18nlangtag/lang.h> #include <tools/lineend.hxx> #include <tools/rtti.hxx> @@ -370,8 +371,8 @@ public: bool IsFlatMode() const; void SetFlatMode( bool bFlat ); - void SetControlWord( sal_uInt32 nWord ); - sal_uInt32 GetControlWord() const; + void SetControlWord( EEControlBits nWord ); + EEControlBits GetControlWord() const; void QuickSetAttribs( const SfxItemSet& rSet, const ESelection& rSel ); void QuickMarkInvalid( const ESelection& rSel ); |