mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 23:07:59 +00:00
Fix compilation on Windows after code cleanups.
This commit is contained in:
parent
76ca967d70
commit
d744968ea6
@ -75,6 +75,10 @@ const int UNLEN = 256;
|
||||
#endif
|
||||
#endif // DISABLE_GUI
|
||||
|
||||
#ifdef Q_WS_WIN
|
||||
#include <QDesktopServices>
|
||||
#endif
|
||||
|
||||
using namespace libtorrent;
|
||||
|
||||
const int MAX_FILENAME_LENGTH = 255;
|
||||
@ -159,7 +163,7 @@ QString misc::QDesktopServicesDownloadLocation() {
|
||||
// TODO: Use IKnownFolderManager to get path of FOLDERID_Downloads
|
||||
// instead of hardcoding "Downloads"
|
||||
// Unfortunately, this would break compatibility with WinXP
|
||||
return QDir(QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation)).absoluteFilePath(tr("Downloads")).toString();
|
||||
return QDir(QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation)).absoluteFilePath(tr("Downloads"));
|
||||
#endif
|
||||
|
||||
#ifdef Q_WS_X11
|
||||
|
@ -45,14 +45,6 @@
|
||||
#include <QCoreApplication>
|
||||
#endif
|
||||
|
||||
#ifdef Q_WS_WIN
|
||||
#include <QDesktopServices>
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_LINUX
|
||||
#include <cstdlib>
|
||||
#endif
|
||||
|
||||
#include "misc.h"
|
||||
#include "qinisettings.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user