Mark unused parameters

This commit is contained in:
Jonas Kvinge
2020-07-17 16:36:24 +02:00
parent 7afde0e93f
commit 4140163ab2
5 changed files with 11 additions and 2 deletions

View File

@@ -59,6 +59,7 @@ bool OSD::SupportsTrayPopups() { return false; }
void OSD::ShowMessageNative(const QString& summary, const QString& message, const QString& icon, const QImage& image) {
Q_UNUSED(icon);
Q_UNUSED(image);
if (NotificationCenterSupported()) {
scoped_nsobject<NSString> mac_message(
[[NSString alloc] initWithUTF8String:message.toUtf8().constData()]);