diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-06 09:42:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-06 09:52:04 +0200 |
commit | f36846b145e24d5fac4750d46446c189c23df533 (patch) | |
tree | d81e79528ad0f5d4685b6b9af33c83e6278df5a7 /include | |
parent | 5a099fef6e804c8fc17647c4ad2279102d0ce383 (diff) |
convert HTMLTableFrame to scoped enum
Change-Id: I1353619ca11f867ca37dec3105e50ba9f3d70d54
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/parhtml.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svtools/parhtml.hxx b/include/svtools/parhtml.hxx index 9b7634430fd4..2ba9016346f8 100644 --- a/include/svtools/parhtml.hxx +++ b/include/svtools/parhtml.hxx @@ -43,8 +43,8 @@ class SvKeyValueIterator; #define HTMLFONTSZ6_DFLT 24 #define HTMLFONTSZ7_DFLT 36 -enum HTMLTableFrame { HTML_TF_VOID, HTML_TF_ABOVE, HTML_TF_BELOW, - HTML_TF_HSIDES, HTML_TF_LHS, HTML_TF_RHS, HTML_TF_VSIDES, HTML_TF_BOX }; +enum class HTMLTableFrame { Void, Above, Below, + HSides, LHS, RHS, VSides, Box }; enum HTMLTableRules { HTML_TR_NONE, HTML_TR_GROUPS, HTML_TR_ROWS, HTML_TR_COLS, HTML_TR_ALL }; |