summaryrefslogtreecommitdiff
path: root/framework/source/helper
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-23 13:32:21 +0200
committerNoel Grandin <noel@peralex.com>2016-02-24 11:48:38 +0200
commit0839f90394d96cf0fe414913527b3e3e5ba3c86a (patch)
treeb30ad360ae30797d9944453e6cface25db4c59c7 /framework/source/helper
parenta9a04f11a6b3938aa2d8d0f8f21a866c65b761da (diff)
convert EConfigurationModes to scoped enum
Change-Id: I1e81c8d637e738f536f7efad8b67d0c9183e6483
Diffstat (limited to 'framework/source/helper')
-rw-r--r--framework/source/helper/persistentwindowstate.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/helper/persistentwindowstate.cxx b/framework/source/helper/persistentwindowstate.cxx
index 3cdf50064760..c4fbaf055b60 100644
--- a/framework/source/helper/persistentwindowstate.cxx
+++ b/framework/source/helper/persistentwindowstate.cxx
@@ -175,7 +175,7 @@ OUString PersistentWindowState::implst_getWindowStateFromConfig(
"org.openoffice.Setup/",
"Office/Factories/*[\"" + sModuleName + "\"]",
"ooSetupFactoryWindowAttributes",
- ::comphelper::ConfigurationHelper::E_READONLY) >>= sWindowState;
+ ::comphelper::EConfigurationModes::ReadOnly) >>= sWindowState;
}
catch(const css::uno::RuntimeException&)
{ throw; }
@@ -196,7 +196,7 @@ void PersistentWindowState::implst_setWindowStateOnConfig(
"Office/Factories/*[\"" + sModuleName + "\"]",
"ooSetupFactoryWindowAttributes",
css::uno::makeAny(sWindowState),
- ::comphelper::ConfigurationHelper::E_STANDARD);
+ ::comphelper::EConfigurationModes::Standard);
}
catch(const css::uno::RuntimeException&)
{ throw; }