Browse Source

Replace deprecated `qt_mac_set_dock_menu()`

adaptive-webui-19844
Chocobo1 6 years ago
parent
commit
78b9eafed2
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 8
      src/gui/macutilities.h
  2. 8
      src/gui/macutilities.mm
  3. 7
      src/gui/mainwindow.cpp

8
src/gui/macutilities.h

@ -29,10 +29,14 @@
#ifndef MACUTILITIES_H #ifndef MACUTILITIES_H
#define MACUTILITIES_H #define MACUTILITIES_H
#include <QPixmap>
#include <QSize>
#include <objc/objc.h> #include <objc/objc.h>
#include <QSet>
class QPixmap;
class QSize;
class QString;
namespace MacUtils namespace MacUtils
{ {
QPixmap pixmapForExtension(const QString &ext, const QSize &size); QPixmap pixmapForExtension(const QString &ext, const QSize &size);

8
src/gui/macutilities.mm

@ -28,10 +28,14 @@
#include "macutilities.h" #include "macutilities.h"
#import <Cocoa/Cocoa.h>
#include <objc/message.h>
#include <QPixmap>
#include <QSet> #include <QSet>
#include <QSize>
#include <QString>
#include <QtMac> #include <QtMac>
#include <objc/message.h>
#import <Cocoa/Cocoa.h>
namespace MacUtils namespace MacUtils
{ {

7
src/gui/mainwindow.cpp

@ -107,10 +107,6 @@
#include "programupdater.h" #include "programupdater.h"
#endif #endif
#ifdef Q_OS_MAC
void qt_mac_set_dock_menu(QMenu *menu);
#endif
#define TIME_TRAY_BALLOON 5000 #define TIME_TRAY_BALLOON 5000
#define PREVENT_SUSPEND_INTERVAL 60000 #define PREVENT_SUSPEND_INTERVAL 60000
@ -469,7 +465,7 @@ MainWindow::MainWindow(QWidget *parent)
#endif #endif
#ifdef Q_OS_MAC #ifdef Q_OS_MAC
setupDockClickHandler(); setupDockClickHandler();
qt_mac_set_dock_menu(trayIconMenu()); trayIconMenu()->setAsDockMenu();
#endif #endif
} }
@ -1815,7 +1811,6 @@ void MainWindow::on_actionDownloadFromURL_triggered()
} }
#if defined(Q_OS_WIN) || defined(Q_OS_MAC) #if defined(Q_OS_WIN) || defined(Q_OS_MAC)
void MainWindow::handleUpdateCheckFinished(bool updateAvailable, QString newVersion, bool invokedByUser) void MainWindow::handleUpdateCheckFinished(bool updateAvailable, QString newVersion, bool invokedByUser)
{ {
QMessageBox::StandardButton answer = QMessageBox::Yes; QMessageBox::StandardButton answer = QMessageBox::Yes;

Loading…
Cancel
Save