summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui/windows/helpwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/helpwindow.cpp b/src/gui/windows/helpwindow.cpp
index 1cfb30e2b..44203d46d 100644
--- a/src/gui/windows/helpwindow.cpp
+++ b/src/gui/windows/helpwindow.cpp
@@ -112,7 +112,7 @@ void HelpWindow::handleLink(const std::string &link,
if (!strStartWith(link, "http://") && !strStartWith(link, "https://"))
{
// need use separate variable
- const std::string helpFile = link;
+ const std::string helpFile = link; // NOLINT
loadHelp(helpFile);
}
else