Core: Fix warnings

Fixes two -Wmissing-declarations warnings
This commit is contained in:
Léo Lam
2017-09-07 20:35:17 +02:00
parent 336a185706
commit a8849f87f1
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
#include "UICommon/CommandLineParse.h"
#include "UICommon/UICommon.h"
bool QtMsgAlertHandler(const char* caption, const char* text, bool yes_no, MsgType style)
static bool QtMsgAlertHandler(const char* caption, const char* text, bool yes_no, MsgType style)
{
return RunOnObject(QApplication::instance(), [&] {
QMessageBox message_box(QApplication::activeWindow());