diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-10 08:12:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-10 08:12:28 +0100 |
commit | d86f83b6d942fa18ffb1e74daff6032dea954dda (patch) | |
tree | 570ad2c0df23d5cbd64ed2c69635af65908912e9 /basegfx/test/genericclipper.cxx | |
parent | 4e1d0357313a9bf55e78b9228dcf96c829c56855 (diff) |
New loplugin:conststringvar: basegfx
Change-Id: Ia298e6a3515de9bde212dfd6159032859a965df1
Diffstat (limited to 'basegfx/test/genericclipper.cxx')
-rw-r--r-- | basegfx/test/genericclipper.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/test/genericclipper.cxx b/basegfx/test/genericclipper.cxx index dde7afa4ad1d..b16b19ac3c4b 100644 --- a/basegfx/test/genericclipper.cxx +++ b/basegfx/test/genericclipper.cxx @@ -103,25 +103,25 @@ public: void validateOr() { - const char* pValid="m0 0h100v150h-75v-50h-5v50h-20v-50-10zm75 100v-50h-50v50z"; + const char* const pValid="m0 0h100v150h-75v-50h-5v50h-20v-50-10zm75 100v-50h-50v50z"; validate("validateOr", pValid, &tools::solvePolygonOperationOr); } void validateXor() { - const char* pValid="m0 0h100v150h-75v-50h-5v50h-20v-50-10zm0 100h20v-10h-20zm75 0v-50h-50v50z"; + const char* const pValid="m0 0h100v150h-75v-50h-5v50h-20v-50-10zm0 100h20v-10h-20zm75 0v-50h-50v50z"; validate("validateXor", pValid, &tools::solvePolygonOperationXor); } void validateAnd() { - const char* pValid="m0 100v-10h20v10z"; + const char* const pValid="m0 100v-10h20v10z"; validate("validateAnd", pValid, &tools::solvePolygonOperationAnd); } void validateDiff() { - const char* pValid="m0 90v-90h100v150h-75v-50h-5v-10zm75 10v-50h-50v50z"; + const char* const pValid="m0 90v-90h100v150h-75v-50h-5v-10zm75 10v-50h-50v50z"; validate("validateDiff", pValid, &tools::solvePolygonOperationDiff); } |