# HG changeset patch # User Matti Hamalainen # Date 1523573069 -10800 # Node ID 18eb32d29a4f31c827c938e329f0dba4f5e04716 # Parent 4950731d52c14d91ec3aa07c6a1176c5c37d6de0 Fix a fall-through switch/case warning. diff -r 4950731d52c1 -r 18eb32d29a4f src/debugging/TSLogger.cpp --- 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 += " Fatal: "; + 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 :