diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-15 17:15:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-18 07:15:21 +0100 |
commit | 39c618caf5aa19da95285bec6cab7108bee3984c (patch) | |
tree | ea579195273f6796b0b386c98867232f1771d0d0 /include | |
parent | 12bb4bc980863d4338725cf5a5dcaf3acbfddc09 (diff) |
convert EEHorizontalTextDirection to scoped enum
Change-Id: Icb7298742ae80fa17d5e6f6a3a09a6bb30892b6d
Reviewed-on: https://gerrit.libreoffice.org/46590
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/editdata.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/editeng/editdata.hxx b/include/editeng/editdata.hxx index eef5770900a1..9e71c81a2dd8 100644 --- a/include/editeng/editdata.hxx +++ b/include/editeng/editdata.hxx @@ -34,7 +34,7 @@ class SvxRTFItemStackType; enum class HtmlTokenId : sal_Int16; enum class EETextFormat { Text = 0x20, Rtf, Html = 0x32, Xml }; -enum EEHorizontalTextDirection { EE_HTEXTDIR_DEFAULT, EE_HTEXTDIR_L2R, EE_HTEXTDIR_R2L }; +enum class EEHorizontalTextDirection { Default, L2R, R2L }; enum class EESelectionMode { Std, TxtOnly, Hidden }; // EE_SELMODE_HIDDEN can be used to completely hide the selection. This is useful e.g. when you want show the selection // only as long as your window (which the edit view works on) has the focus |