summaryrefslogtreecommitdiffstats
path: root/linguistic
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-01 09:48:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-02 07:03:08 +0100
commit8467d764187691f53e66d3568270197b162332d8 (patch)
tree4516bb3ea935427d4549ce09615a22bf5663096a /linguistic
parent[Pardus] fix missing break in switch case on Android (diff)
downloadcore-8467d764187691f53e66d3568270197b162332d8.tar.gz
core-8467d764187691f53e66d3568270197b162332d8.zip
fix signatures of deleted copy/assign operators
Change-Id: Id1a0749b78a7021be3564487fb974d7084705129 Reviewed-on: https://gerrit.libreoffice.org/62718 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/gciterator.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/linguistic/source/gciterator.hxx b/linguistic/source/gciterator.hxx
index 03abfa2ac450..10eb2a4186fd 100644
--- a/linguistic/source/gciterator.hxx
+++ b/linguistic/source/gciterator.hxx
@@ -199,8 +199,8 @@ public:
virtual css::uno::Any SAL_CALL getValueByIndex(::sal_Int32 nIndex) override;
private:
- LngXStringKeyMap(LngXStringKeyMap&) = delete;
- void operator=(LngXStringKeyMap&) = delete;
+ LngXStringKeyMap(LngXStringKeyMap const &) = delete;
+ void operator=(LngXStringKeyMap const &) = delete;
~LngXStringKeyMap() override{};