1 // Copyright 2005-2019 The Mumble Developers. All rights reserved.
2 // Use of this source code is governed by a BSD-style license
3 // that can be found in the LICENSE file at the root of the
4 // Mumble source tree or at <https://www.mumble.info/LICENSE>.
5 
6 #include "mumble_pch.hpp"
7 
8 #include "Log.h"
9 
postNotification(MsgType mt,const QString & plain)10 void Log::postNotification(MsgType mt, const QString &plain) {
11 	postQtNotification(mt, plain);
12 }
13