From a86efaaeb35a37f0fc17cf72fc9e5242daaf0a0c Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Sun, 29 Sep 2019 09:31:18 +0800 Subject: [PATCH] fix: build under linux --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index c36c299..c42c8f6 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -195,7 +195,7 @@ bool MainWindow::nativeEvent(const QByteArray &eventType, void *message, long *r return false; #else - return QMainWindow::nativeEvent(eventType, *message, *result); + return QMainWindow::nativeEvent(eventType, message, result); #endif // _WIN32 }