summaryrefslogtreecommitdiff
path: root/sd/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-04-01 09:24:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-04-01 11:11:44 +0200
commitf370aa88faf3c0ef7138b87d2bcf89f5eb8541c1 (patch)
treeb2c8431dedfe89c8e8906344f704782e9a521ad3 /sd/inc
parent8fb5ee2a1399383dbfe3baec8c8716788c1fa0e8 (diff)
convert SdOptionStreamMode to scoped enum
Change-Id: Ib9784c5364e52dde03c0ba2a91cc8fab9d286029 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91464 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/inc')
-rw-r--r--sd/inc/sdmod.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/inc/sdmod.hxx b/sd/inc/sdmod.hxx
index f37b79771f3e..7b12253c07d8 100644
--- a/sd/inc/sdmod.hxx
+++ b/sd/inc/sdmod.hxx
@@ -49,10 +49,10 @@ namespace com { namespace sun { namespace star { namespace frame {
class XFrame;
} } } }
-enum SdOptionStreamMode
+enum class SdOptionStreamMode
{
- SD_OPTION_LOAD = 0,
- SD_OPTION_STORE = 1
+ Load = 0,
+ Store = 1
};
typedef std::map< SfxItemPropertyMapEntry const * , css::uno::Reference<css::beans::XPropertySetInfo> > SdExtPropertySetInfoCache;