mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Fix build error
Apparently the function is not available on Windows platforms.
This commit is contained in:
parent
cb9a160366
commit
b7d739ab3f
1 changed files with 2 additions and 0 deletions
|
@ -149,8 +149,10 @@ Application::Application(const QString &id, int &argc, char **argv)
|
|||
#if !defined(DISABLE_GUI)
|
||||
setAttribute(Qt::AA_UseHighDpiPixmaps, true); // opt-in to the high DPI pixmap support
|
||||
setQuitOnLastWindowClosed(false);
|
||||
#if !defined(Q_OS_WIN)
|
||||
setDesktopFileName("org.qbittorrent.qBittorrent");
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_WIN) && !defined(DISABLE_GUI)
|
||||
connect(this, &QGuiApplication::commitDataRequest, this, &Application::shutdownCleanup, Qt::DirectConnection);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue