Fix Qt5 support

This commit is contained in:
diger
2014-09-11 08:44:25 +06:00
parent cc4d17fbf0
commit e7f1dacd6c
3 changed files with 8 additions and 8 deletions

View File

@@ -16,7 +16,7 @@
#include <sys/param.h>
#include <sys/mount.h>
#include <string.h>
#elif !defined Q_WS_HAIKU
#elif !defined Q_OS_HAIKU
#include <sys/vfs.h>
#endif
#endif
@@ -56,7 +56,7 @@ private:
QHash<QString, int> m_partialTorrents;
QPointer<QTimer> m_partialTorrentTimer;
#if !defined Q_WS_WIN && !defined Q_WS_HAIKU
#if !defined Q_OS_WIN && !defined Q_OS_HAIKU
private:
static bool isNetworkFileSystem(QString path) {
QString file = path;
@@ -145,7 +145,7 @@ public:
}
void addPath(const QString & path) {
#if !defined Q_WS_WIN && !defined Q_WS_HAIKU
#if !defined Q_OS_WIN && !defined Q_OS_HAIKU
QDir dir(path);
if (!dir.exists())
return;
@@ -167,7 +167,7 @@ public:
qDebug("FS Watching is watching %s in normal mode", qPrintable(path));
QFileSystemWatcher::addPath(path);
scanLocalFolder(path);
#if !defined Q_WS_WIN && !defined Q_WS_HAIKU
#if !defined Q_OS_WIN && !defined Q_OS_HAIKU
}
#endif
}