summaryrefslogtreecommitdiff
path: root/framework/source/services/substitutepathvars.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/services/substitutepathvars.cxx')
-rw-r--r--framework/source/services/substitutepathvars.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/services/substitutepathvars.cxx b/framework/source/services/substitutepathvars.cxx
index 1836fa00e554..97c91ea9f9d3 100644
--- a/framework/source/services/substitutepathvars.cxx
+++ b/framework/source/services/substitutepathvars.cxx
@@ -248,7 +248,7 @@ OUString SubstitutePathVariables::GetWorkPath() const
OUString aWorkPath;
css::uno::Reference< css::container::XHierarchicalNameAccess > xPaths(officecfg::Office::Paths::Paths::get(m_xContext), css::uno::UNO_QUERY_THROW);
if (!(xPaths->getByHierarchicalName("['Work']/WritePath") >>= aWorkPath))
- // fallback in case config layer does not return an usable work dir value.
+ // fallback in case config layer does not return a usable work dir value.
aWorkPath = GetWorkVariableValue();
return aWorkPath;
@@ -261,7 +261,7 @@ OUString SubstitutePathVariables::GetWorkVariableValue() const
if (!x)
{
// fallback to $HOME in case platform dependent config layer does not return
- // an usable work dir value.
+ // a usable work dir value.
osl::Security aSecurity;
aSecurity.getHomeDir( aWorkPath );
}