summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-04 08:29:58 +0200
committerNoel Grandin <noel@peralex.com>2015-06-04 08:30:24 +0200
commit623445aa0edb6647bab37fc7f8adcec11d43e317 (patch)
tree1482de389dc211fef2c09e3301f9b13cbbd74987 /include
parent42f771d6e9c02c50acc49f7feb1a9b5d0a9368ae (diff)
convert PropertyMode to scoped enum
Change-Id: I9b0bbf6273aa18ae918d1d69af5dcc7652181f5c
Diffstat (limited to 'include')
-rw-r--r--include/basic/sbdef.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/basic/sbdef.hxx b/include/basic/sbdef.hxx
index 1444241ac93f..fa20115b9753 100644
--- a/include/basic/sbdef.hxx
+++ b/include/basic/sbdef.hxx
@@ -55,12 +55,12 @@ BASIC_DLLPUBLIC void setBasicWatchMode( bool bOn );
#define SBX_HINT_BASICSTART SFX_HINT_USER04
#define SBX_HINT_BASICSTOP SFX_HINT_USER05
-enum PropertyMode
+enum class PropertyMode
{
- PROPERTY_MODE_NONE,
- PROPERTY_MODE_GET,
- PROPERTY_MODE_LET,
- PROPERTY_MODE_SET
+ NONE,
+ Get,
+ Let,
+ Set
};
#endif