summaryrefslogtreecommitdiff
path: root/starmath/inc
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2017-05-05 12:07:11 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2017-05-05 13:55:37 +0200
commit6e4cba99bb35e6697b94309eedd1a08ebea2dc68 (patch)
treea5a9b88663d8e42a92bd34ce2064d9a84ded5332 /starmath/inc
parentc7e4f2b310d10fb3b3ae3b8ebdf02f9d2ad79b7a (diff)
starmath: Convert SmHorAlign to scoped enum
Change-Id: Ie75749ebbea2ec74e2f16b1c42a55fbcd71845c3 Reviewed-on: https://gerrit.libreoffice.org/37270 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath/inc')
-rw-r--r--starmath/inc/format.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/starmath/inc/format.hxx b/starmath/inc/format.hxx
index 7dc1a9c32930..4095500839d4 100644
--- a/starmath/inc/format.hxx
+++ b/starmath/inc/format.hxx
@@ -82,7 +82,11 @@
#define DIS_END 23
-enum SmHorAlign { AlignLeft, AlignCenter, AlignRight };
+enum class SmHorAlign {
+ Left,
+ Center,
+ Right
+};
OUString GetDefaultFontName( LanguageType nLang, sal_uInt16 nIdent );