summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry/configuration/dp_configurationbackenddb.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/registry/configuration/dp_configurationbackenddb.cxx')
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configurationbackenddb.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/source/deployment/registry/configuration/dp_configurationbackenddb.cxx b/desktop/source/deployment/registry/configuration/dp_configurationbackenddb.cxx
index 68a1f009d0bc..ba8159775639 100644
--- a/desktop/source/deployment/registry/configuration/dp_configurationbackenddb.cxx
+++ b/desktop/source/deployment/registry/configuration/dp_configurationbackenddb.cxx
@@ -96,7 +96,7 @@ void ConfigurationBackendDb::addEntry(OUString const & url, Data const & data)
}
-::boost::optional<ConfigurationBackendDb::Data>
+::o3tl::optional<ConfigurationBackendDb::Data>
ConfigurationBackendDb::getEntry(OUString const & url)
{
try
@@ -110,9 +110,9 @@ ConfigurationBackendDb::getEntry(OUString const & url)
}
else
{
- return ::boost::optional<Data>();
+ return ::o3tl::optional<Data>();
}
- return ::boost::optional<Data>(retData);
+ return ::o3tl::optional<Data>(retData);
}
catch ( const css::deployment::DeploymentException& )
{