diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-23 14:27:36 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-24 08:47:57 +0200 |
commit | 20d1ee06c0242948e7e512db5465fdbdedc70916 (patch) | |
tree | 94b4bd7364197156c5650d7a9eb9f9d0c42809ce /include/svx | |
parent | 6971da088718321b3790ce4d1d7b238dc8b76ce8 (diff) |
convert PaperSizeApp to scoped enum
Change-Id: Ifd452ed0ca53223ae9b45e1b3b232fcfc6d29496
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/papersizelistbox.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/papersizelistbox.hxx b/include/svx/papersizelistbox.hxx index 4ff24e30dd6f..2d2cf5b694b7 100644 --- a/include/svx/papersizelistbox.hxx +++ b/include/svx/papersizelistbox.hxx @@ -24,10 +24,10 @@ #include <svx/svxdllapi.h> #include <vcl/lstbox.hxx> -enum PaperSizeApp +enum class PaperSizeApp { - PaperSizeStd, - PaperSizeDraw + Std, + Draw }; class SVX_DLLPUBLIC PaperSizeListBox : public ListBox |