diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-11-19 17:32:08 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-11-19 21:19:40 +0100 |
commit | 95ffa27c593a7fa31309b5e72a55d966862db9a0 (patch) | |
tree | a1aa315c716375f7c40e36a96ec4fbabdc1cec12 /sal/qa/rtl/cipher | |
parent | 115e7a00c3ab2927b10e569e41d60230cba93dec (diff) |
Extended loplugin:ostr: sal
Change-Id: Ic8a02784acb9f8981249689541bb6cba1b7fbfb7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159682
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sal/qa/rtl/cipher')
-rw-r--r-- | sal/qa/rtl/cipher/rtl_cipher.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sal/qa/rtl/cipher/rtl_cipher.cxx b/sal/qa/rtl/cipher/rtl_cipher.cxx index 55bbd47b006f..3844c5613bd3 100644 --- a/sal/qa/rtl/cipher/rtl_cipher.cxx +++ b/sal/qa/rtl/cipher/rtl_cipher.cxx @@ -269,18 +269,18 @@ public: void decode_001() { - test_encode_and_decode(0,0,""); - test_encode_and_decode(0,0,"hallo"); - test_encode_and_decode(1,0,"B2Aahg5B"); - test_encode_and_decode(1,2,"Longer text string"); + test_encode_and_decode(0,0,""_ostr); + test_encode_and_decode(0,0,"hallo"_ostr); + test_encode_and_decode(1,0,"B2Aahg5B"_ostr); + test_encode_and_decode(1,2,"Longer text string"_ostr); } void decode_002() { - test_encode(0,0,""); - test_encode(0,0,"hallo"); - test_encode(1,0,"B2Aahg5B"); - test_encode(1,2,"Longer text string"); + test_encode(0,0,""_ostr); + test_encode(0,0,"hallo"_ostr); + test_encode(1,0,"B2Aahg5B"_ostr); + test_encode(1,2,"Longer text string"_ostr); } // Change the following lines only, if you add, remove or rename // member functions of the current class, |