From 3bdd176731c351638f541a37b94094124f3c9f52 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 15 Nov 2015 07:42:02 +0200 Subject: cppcheck:stlIfStrFind "Inefficient usage of string::find() in condition; string::compare() would be faster." Change-Id: I90403b1d05eff6499c10be33068e5fd4fed30b62 Reviewed-on: https://gerrit.libreoffice.org/19966 Tested-by: Jenkins Reviewed-by: Noel Grandin --- helpcompiler/source/HelpCompiler.cxx | 4 ++-- helpcompiler/source/HelpLinker.cxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'helpcompiler/source') diff --git a/helpcompiler/source/HelpCompiler.cxx b/helpcompiler/source/HelpCompiler.cxx index af8154749795..5d3709105287 100644 --- a/helpcompiler/source/HelpCompiler.cxx +++ b/helpcompiler/source/HelpCompiler.cxx @@ -335,7 +335,7 @@ void myparser::traverse( xmlNodePtr parentNode ) std::string hid; - if (branch.find("hid") == 0) + if (branch.compare("hid") == 0) { size_t index = branch.find('/'); if (index != std::string::npos) @@ -493,7 +493,7 @@ bool HelpCompiler::compile() if ( !bExtensionMode && !fileName.empty()) { - if (fileName.find("/text/") == 0) + if (fileName.compare("/text/") == 0) { int len = strlen("/text/"); actMod = fileName.substr(len); diff --git a/helpcompiler/source/HelpLinker.cxx b/helpcompiler/source/HelpLinker.cxx index 8b8f89563f27..33e684a88ecc 100644 --- a/helpcompiler/source/HelpLinker.cxx +++ b/helpcompiler/source/HelpLinker.cxx @@ -400,7 +400,7 @@ void HelpLinker::link() throw(HelpProcessingException, BasicCodeTagger::TaggerEx continue; std::string documentPath = streamTable.document_path; - if (documentPath.find("/") == 0) + if (documentPath.compare("/") == 0) documentPath = documentPath.substr(1); std::string documentJarfile = streamTable.document_module + ".jar"; -- cgit