Browse Source

Fix compilation on Windows after code cleanups.

adaptive-webui-19844
sledgehammer_999 13 years ago
parent
commit
d744968ea6
  1. 6
      src/misc.cpp
  2. 8
      src/preferences/preferences.h

6
src/misc.cpp

@ -75,6 +75,10 @@ const int UNLEN = 256; @@ -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() { @@ -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

8
src/preferences/preferences.h

@ -45,14 +45,6 @@ @@ -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…
Cancel
Save