summaryrefslogtreecommitdiffstats
path: root/i18npool/inc/characterclassificationImpl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18npool/inc/characterclassificationImpl.hxx')
-rw-r--r--i18npool/inc/characterclassificationImpl.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/i18npool/inc/characterclassificationImpl.hxx b/i18npool/inc/characterclassificationImpl.hxx
index dad22515a79e..bcfc7836a92f 100644
--- a/i18npool/inc/characterclassificationImpl.hxx
+++ b/i18npool/inc/characterclassificationImpl.hxx
@@ -20,8 +20,8 @@
#include <com/sun/star/i18n/XCharacterClassification.hpp>
#include <cppuhelper/implbase.hxx>
+#include <utility>
#include <vector>
-#include <memory>
#include <optional>
#include <com/sun/star/lang/XServiceInfo.hpp>
@@ -69,9 +69,9 @@ public:
private:
struct lookupTableItem {
- lookupTableItem(const css::lang::Locale& rLocale, const OUString& rName,
- css::uno::Reference < XCharacterClassification > const & rxCI) :
- aLocale(rLocale), aName(rName), xCI(rxCI) {};
+ lookupTableItem(css::lang::Locale _aLocale, OUString _aName,
+ css::uno::Reference < XCharacterClassification > _xCI) :
+ aLocale(std::move(_aLocale)), aName(std::move(_aName)), xCI(std::move(_xCI)) {};
css::lang::Locale aLocale;
OUString aName;
css::uno::Reference < XCharacterClassification > xCI;