changeset 799:18eb32d29a4f

Fix a fall-through switch/case warning.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 13 Apr 2018 01:44:29 +0300
parents 4950731d52c1
children ca899a323c52
files src/debugging/TSLogger.cpp
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/debugging/TSLogger.cpp	Wed Apr 12 11:59:44 2017 +0300
+++ b/src/debugging/TSLogger.cpp	Fri Apr 13 01:44:29 2018 +0300
@@ -132,6 +132,8 @@
             break;
         case QtFatalMsg :
             message += " <span style=\"font-weight:bold; color:#D60000;\">Fatal:</span> ";
+            break;
+
         // This one is no Qt message type, but can be used to send info messages to the log
         // by calling TSLogger::messageHandler() directly.
         case TSLoggerInfoMsg :