diff options
author | Noel Grandin <noel@peralex.com> | 2016-07-25 14:04:19 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-07-27 06:44:50 +0000 |
commit | 9870f02b310567c1d50c8e11a49afea5fdc549a0 (patch) | |
tree | fea702de7355228bd4b5facfaa99430b658897f1 /xmlsecurity | |
parent | 1485074d84f7804a2942d4942d7d194039948d05 (diff) |
loplugin:countusersofdefaultparams in tools..xmlsecurity
find methods with default params with only zero or one call site
Change-Id: Ie5b30f60e9fe00ba1acf0dfc79b005ded46f05a0
Reviewed-on: https://gerrit.libreoffice.org/27512
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/qa/unit/signing/signing.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlsecurity/qa/unit/signing/signing.cxx b/xmlsecurity/qa/unit/signing/signing.cxx index 767b0fa33a77..7065d0d53e6c 100644 --- a/xmlsecurity/qa/unit/signing/signing.cxx +++ b/xmlsecurity/qa/unit/signing/signing.cxx @@ -95,8 +95,8 @@ public: CPPUNIT_TEST_SUITE_END(); private: - void createDoc(const OUString& rURL = OUString()); - void createCalc(const OUString& rURL = OUString()); + void createDoc(const OUString& rURL); + void createCalc(const OUString& rURL); uno::Reference<security::XCertificate> getCertificate(XMLSignatureHelper& rSignatureHelper); }; @@ -161,7 +161,7 @@ uno::Reference<security::XCertificate> SigningTest::getCertificate(XMLSignatureH void SigningTest::testDescription() { // Create an empty document and store it to a tempfile, finally load it as a storage. - createDoc(); + createDoc(""); utl::TempFile aTempFile; aTempFile.EnableKillingFile(); @@ -194,7 +194,7 @@ void SigningTest::testDescription() void SigningTest::testOOXMLDescription() { // Create an empty document and store it to a tempfile, finally load it as a storage. - createDoc(); + createDoc(""); utl::TempFile aTempFile; aTempFile.EnableKillingFile(); |