add default and QtTraceMsg to switch to avoid warnings

This commit is contained in:
Stephen Birarda 2013-10-31 14:10:08 -07:00
parent 891648b3ca
commit bfe7c82232

View file

@ -80,6 +80,10 @@ const char* stringForLogType(QtMsgType msgType) {
return "FATAL";
case QtWarningMsg:
return "WARNING";
case QtTraceMsg:
return "TRACE";
default:
return "UNKNOWN";
}
}