aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/clangdiagnosticconfigswidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cppeditor/clangdiagnosticconfigswidget.cpp')
-rw-r--r--src/plugins/cppeditor/clangdiagnosticconfigswidget.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/cppeditor/clangdiagnosticconfigswidget.cpp b/src/plugins/cppeditor/clangdiagnosticconfigswidget.cpp
index f5fc8cfe425..8e7e1b8f84f 100644
--- a/src/plugins/cppeditor/clangdiagnosticconfigswidget.cpp
+++ b/src/plugins/cppeditor/clangdiagnosticconfigswidget.cpp
@@ -120,9 +120,11 @@ class ClangBaseChecksWidget : public QWidget
public:
ClangBaseChecksWidget()
{
- auto label = new QLabel(Tr::tr("For appropriate options, consult the GCC or Clang manual "
- "pages or the %1 GCC online documentation</a>.")
- .arg("<a href=\"https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html\">"));
+ auto label = new QLabel;
+ label->setTextFormat(Qt::MarkdownText);
+ label->setText(Tr::tr("For appropriate options, consult the GCC or Clang manual "
+ "pages or the [GCC online documentation](%1).")
+ .arg("https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html"));
label->setOpenExternalLinks(true);
useFlagsFromBuildSystemCheckBox = new QCheckBox(Tr::tr("Use diagnostic flags from build system"));