diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-26 13:32:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-27 08:33:44 +0200 |
commit | b3464e87ae2115e394d5a9f85b4aaf88d485d7f1 (patch) | |
tree | d8d5792c69e4d8be1f2962b83b3a2f05e804fd2d /include | |
parent | 93ddb2cc0bedac9a97260826741f7dfcdca0947d (diff) |
convert SymbolAlign to enum class
Change-Id: Iecc1400809212f56915cad56b739378cda49b90f
Diffstat (limited to 'include')
-rw-r--r-- | include/tools/wintypes.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/wintypes.hxx b/include/tools/wintypes.hxx index e9282da388a7..6abb4b6d8dc4 100644 --- a/include/tools/wintypes.hxx +++ b/include/tools/wintypes.hxx @@ -291,7 +291,7 @@ enum ImageAlign { IMAGEALIGN_LEFT, IMAGEALIGN_TOP, IMAGEALIGN_RIGHT, IMAGEALIGN_ IMAGEALIGN_LEFT_TOP, IMAGEALIGN_LEFT_BOTTOM, IMAGEALIGN_TOP_LEFT, IMAGEALIGN_TOP_RIGHT, IMAGEALIGN_RIGHT_TOP, IMAGEALIGN_RIGHT_BOTTOM, IMAGEALIGN_BOTTOM_LEFT, IMAGEALIGN_BOTTOM_RIGHT, IMAGEALIGN_CENTER }; -enum SymbolAlign { SYMBOLALIGN_LEFT, SYMBOLALIGN_RIGHT }; +enum class SymbolAlign { LEFT, RIGHT }; // ButtonDialog-Types |