summaryrefslogtreecommitdiffstats
path: root/i18npool/inc/inputsequencechecker.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18npool/inc/inputsequencechecker.hxx')
-rw-r--r--i18npool/inc/inputsequencechecker.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/i18npool/inc/inputsequencechecker.hxx b/i18npool/inc/inputsequencechecker.hxx
index b491f6b63175..4f93ada08201 100644
--- a/i18npool/inc/inputsequencechecker.hxx
+++ b/i18npool/inc/inputsequencechecker.hxx
@@ -22,8 +22,8 @@
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/i18n/XExtendedInputSequenceChecker.hpp>
+#include <utility>
#include <vector>
-#include <memory>
#include <optional>
namespace com::sun::star::uno { class XComponentContext; }
@@ -58,8 +58,8 @@ private:
const char *serviceName;
struct lookupTableItem {
- lookupTableItem(const char* rLanguage, const css::uno::Reference < css::i18n::XExtendedInputSequenceChecker >& rxISC) :
- aLanguage(rLanguage), xISC(rxISC) {}
+ lookupTableItem(const char* rLanguage, css::uno::Reference < css::i18n::XExtendedInputSequenceChecker > _xISC) :
+ aLanguage(rLanguage), xISC(std::move(_xISC)) {}
const char* aLanguage;
css::uno::Reference < css::i18n::XExtendedInputSequenceChecker > xISC;
};