diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-03 09:52:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-06 07:13:42 +0100 |
commit | 0d50804e1c0c0ea2a5cd73fa3fa2a9ff0a0e7048 (patch) | |
tree | ab861bba797a4610ffd5b482cc8fa4c4d5b59c35 /i18npool | |
parent | 26e8b589b3f7716a80df7f3a9273e4967d9b0991 (diff) |
loplugin:constparams in various(2)
Change-Id: I533a7eb724b15e168a28dc92cd5962a39bc96e7c
Reviewed-on: https://gerrit.libreoffice.org/44313
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/inc/indexentrysupplier_default.hxx | 2 | ||||
-rw-r--r-- | i18npool/source/indexentry/indexentrysupplier_default.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/i18npool/inc/indexentrysupplier_default.hxx b/i18npool/inc/indexentrysupplier_default.hxx index 6a0514d3466d..2c7925fc7edd 100644 --- a/i18npool/inc/indexentrysupplier_default.hxx +++ b/i18npool/inc/indexentrysupplier_default.hxx @@ -66,7 +66,7 @@ public: IndexTable(); ~IndexTable(); - void init(sal_Unicode start_, sal_Unicode end_, IndexKey* keys, sal_Int16 key_count, Index *index); + void init(sal_Unicode start_, sal_Unicode end_, IndexKey const * keys, sal_Int16 key_count, Index *index); sal_Unicode start; sal_Unicode end; diff --git a/i18npool/source/indexentry/indexentrysupplier_default.cxx b/i18npool/source/indexentry/indexentrysupplier_default.cxx index cc5db18053be..bcd7b2ab6d7c 100644 --- a/i18npool/source/indexentry/indexentrysupplier_default.cxx +++ b/i18npool/source/indexentry/indexentrysupplier_default.cxx @@ -89,7 +89,7 @@ IndexTable::~IndexTable() if (table) free(table); } -void IndexTable::init(sal_Unicode start_, sal_Unicode end_, IndexKey *keys, sal_Int16 key_count, Index *index) +void IndexTable::init(sal_Unicode start_, sal_Unicode end_, IndexKey const *keys, sal_Int16 key_count, Index *index) { start=start_; end=end_; |