diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-17 09:46:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-18 08:49:02 +0200 |
commit | 7232f03f9a74cc839710d4355470963610aff21d (patch) | |
tree | c1bbe4077c9c7206cf2d979489b4610949e0b61f /include | |
parent | a06a8ecb743aa3ffb1be83fbb98f7aa06bc230cb (diff) |
convert SvXMLEmbeddedObjectHelperMode to scoped enum
Change-Id: I12ccc8c7ba0885b3bacd0c17d430a853d327524b
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/xmleohlp.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/svx/xmleohlp.hxx b/include/svx/xmleohlp.hxx index bd8cb9bd55d2..eb39c5e48971 100644 --- a/include/svx/xmleohlp.hxx +++ b/include/svx/xmleohlp.hxx @@ -29,10 +29,9 @@ #include <com/sun/star/embed/XEmbeddedObject.hpp> #include <svx/svxdllapi.h> -enum SvXMLEmbeddedObjectHelperMode +enum class SvXMLEmbeddedObjectHelperMode { - EMBEDDEDOBJECTHELPER_MODE_READ = 0, - EMBEDDEDOBJECTHELPER_MODE_WRITE = 1 + Read, Write }; namespace comphelper { class IEmbeddedHelper; } |