summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/unotools/configitem.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/unotools/configitem.hxx b/include/unotools/configitem.hxx
index 54a57d896f5e..41c8b62a007d 100644
--- a/include/unotools/configitem.hxx
+++ b/include/unotools/configitem.hxx
@@ -58,12 +58,10 @@ namespace o3tl
namespace utl
{
- enum ConfigNameFormat
+ enum class ConfigNameFormat
{
- CONFIG_NAME_PLAINTEXT_NAME, // unescaped local node name, for user display etc.
- CONFIG_NAME_LOCAL_NAME, // local node name, for use in XNameAccess etc. ("Item", "Q & A")
- CONFIG_NAME_LOCAL_PATH, // one-level relative path, for use when building paths etc. ("Item", "Typ['Q & A']")
- CONFIG_NAME_FULL_PATH // full absolute path. ("/org.openoffice.Sample/Group/Item", "/org.openoffice.Sample/Set/Typ['Q & A']")
+ LocalNode, // local node name, for use in XNameAccess etc. ("Item", "Q & A")
+ LocalPath, // one-level relative path, for use when building paths etc. ("Item", "Typ['Q & A']")
};
class ConfigChangeListener_Impl;