diff --git a/gui/help/images/severities-error.png b/gui/help/images/severities-error.png
new file mode 100644
index 000000000..6bad55fbd
Binary files /dev/null and b/gui/help/images/severities-error.png differ
diff --git a/gui/help/images/severities-information.png b/gui/help/images/severities-information.png
new file mode 100644
index 000000000..70de0695f
Binary files /dev/null and b/gui/help/images/severities-information.png differ
diff --git a/gui/help/images/severities-performance.png b/gui/help/images/severities-performance.png
new file mode 100644
index 000000000..ea9a1c8ab
Binary files /dev/null and b/gui/help/images/severities-performance.png differ
diff --git a/gui/help/images/severities-portability.png b/gui/help/images/severities-portability.png
new file mode 100644
index 000000000..2bc00aa10
Binary files /dev/null and b/gui/help/images/severities-portability.png differ
diff --git a/gui/help/images/severities-style.png b/gui/help/images/severities-style.png
new file mode 100644
index 000000000..7320ae9fd
Binary files /dev/null and b/gui/help/images/severities-style.png differ
diff --git a/gui/help/images/severities-warning.png b/gui/help/images/severities-warning.png
new file mode 100644
index 000000000..196884717
Binary files /dev/null and b/gui/help/images/severities-warning.png differ
diff --git a/gui/help/online-help.qhp b/gui/help/online-help.qhp
index 61171d7e2..5444ab02e 100644
--- a/gui/help/online-help.qhp
+++ b/gui/help/online-help.qhp
@@ -8,14 +8,20 @@
+
+
+
+
+
+
index.html
@@ -23,6 +29,13 @@
investigating-warnings.html
preferences.html
projectfiledialog.html
+ severities.html
+ images/severities-error.png
+ images/severities-warning.png
+ images/severities-style.png
+ images/severities-performance.png
+ images/severities-portability.png
+ images/severities-information.png
standalone-analysis.html
tagging.html
walkthrough.html
diff --git a/gui/help/severities.html b/gui/help/severities.html
new file mode 100644
index 000000000..2176ace66
--- /dev/null
+++ b/gui/help/severities.html
@@ -0,0 +1,40 @@
+
+
+Severities
+
+
+
+Severities
+
+error
+
+
+used when bugs are found
+
+warning
+
+
+suggestions about defensive programming to prevent bugs
+
+style
+
+
+stylistic issues related to code cleanup (unused functions, redundant code, constness, and such)
+
+performance
+
+
+Suggestions for making the code faster. These suggestions are only based on common knowledge. It is not certain you'll get any measurable difference in speed by fixing these messages.
+
+portability
+
+
+portability warnings. 64-bit portability. code might work different on different compilers. etc.
+
+information
+
+
+Configuration problems. The recommendation is to only enable these during configuration.
+
+
+