Fix compilation on Windows after code cleanups.

This commit is contained in:
sledgehammer_999 2011-10-04 23:17:49 +03:00
parent 76ca967d70
commit d744968ea6
2 changed files with 5 additions and 9 deletions

View file

@ -75,6 +75,10 @@ const int UNLEN = 256;
#endif #endif
#endif // DISABLE_GUI #endif // DISABLE_GUI
#ifdef Q_WS_WIN
#include <QDesktopServices>
#endif
using namespace libtorrent; using namespace libtorrent;
const int MAX_FILENAME_LENGTH = 255; const int MAX_FILENAME_LENGTH = 255;
@ -159,7 +163,7 @@ QString misc::QDesktopServicesDownloadLocation() {
// TODO: Use IKnownFolderManager to get path of FOLDERID_Downloads // TODO: Use IKnownFolderManager to get path of FOLDERID_Downloads
// instead of hardcoding "Downloads" // instead of hardcoding "Downloads"
// Unfortunately, this would break compatibility with WinXP // 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 #endif
#ifdef Q_WS_X11 #ifdef Q_WS_X11

View file

@ -45,14 +45,6 @@
#include <QCoreApplication> #include <QCoreApplication>
#endif #endif
#ifdef Q_WS_WIN
#include <QDesktopServices>
#endif
#ifdef Q_OS_LINUX
#include <cstdlib>
#endif
#include "misc.h" #include "misc.h"
#include "qinisettings.h" #include "qinisettings.h"