summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry/help/dp_helpbackenddb.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/registry/help/dp_helpbackenddb.cxx')
-rw-r--r--desktop/source/deployment/registry/help/dp_helpbackenddb.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/source/deployment/registry/help/dp_helpbackenddb.cxx b/desktop/source/deployment/registry/help/dp_helpbackenddb.cxx
index 59867dd54767..7f9f7095be85 100644
--- a/desktop/source/deployment/registry/help/dp_helpbackenddb.cxx
+++ b/desktop/source/deployment/registry/help/dp_helpbackenddb.cxx
@@ -94,7 +94,7 @@ void HelpBackendDb::addEntry(OUString const & url, Data const & data)
}
-::boost::optional<HelpBackendDb::Data>
+::o3tl::optional<HelpBackendDb::Data>
HelpBackendDb::getEntry(OUString const & url)
{
try
@@ -107,9 +107,9 @@ HelpBackendDb::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& )
{