diff options
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/services/pathsettings.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/services/pathsettings.cxx b/framework/source/services/pathsettings.cxx index 133b819394a2..d1f1cff83803 100644 --- a/framework/source/services/pathsettings.cxx +++ b/framework/source/services/pathsettings.cxx @@ -765,7 +765,7 @@ PathSettings::EChangeOp PathSettings::impl_updatePath(const OUString& sPath pPathNew = &aPath; impl_notifyPropListener(sPath, pPathOld, pPathNew); } - m_lPaths[sPath] = aPath; + m_lPaths[sPath] = std::move(aPath); } break; |