summaryrefslogtreecommitdiff
path: root/include/svx/langbox.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-23 14:57:09 +0200
committerNoel Grandin <noel@peralex.com>2016-08-24 08:47:57 +0200
commit3d226bdc444084615b29f79b977ade73fd653240 (patch)
tree9fafe8fda5dad763d0f977debdbb18e035699b3e /include/svx/langbox.hxx
parent00c3ea0ac629f695d22bb1debba385532f965379 (diff)
convert EditedAndValid to scoped enum
Change-Id: I0f321de899771fe826224decddab1ec92d64a21a
Diffstat (limited to 'include/svx/langbox.hxx')
-rw-r--r--include/svx/langbox.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/langbox.hxx b/include/svx/langbox.hxx
index 1f418f735708..474348e9a07f 100644
--- a/include/svx/langbox.hxx
+++ b/include/svx/langbox.hxx
@@ -149,11 +149,11 @@ class SVX_DLLPUBLIC SvxLanguageComboBox : public ComboBox, public SvxLanguageBox
public:
SvxLanguageComboBox( vcl::Window* pParent, WinBits nBits );
- enum EditedAndValid
+ enum class EditedAndValid
{
- EDITED_NO,
- EDITED_VALID,
- EDITED_INVALID
+ No,
+ Valid,
+ Invalid
};
EditedAndValid GetEditedAndValid() const { return meEditedAndValid;}