mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 14:57:52 +00:00
Fix build with Qt < 4.7
This commit is contained in:
parent
4d76bd33fc
commit
4d601f5383
@ -35,10 +35,14 @@
|
||||
#include "qbtsession.h"
|
||||
#include "torrentpersistentdata.h"
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0)
|
||||
#include <QElapsedTimer>
|
||||
#endif
|
||||
|
||||
using namespace libtorrent;
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0)
|
||||
|
||||
#define CACHED_VARIABLE(VARTYPE, VAR, DUR) \
|
||||
static VARTYPE VAR; \
|
||||
static QElapsedTimer cacheTimer; \
|
||||
@ -59,6 +63,16 @@ using namespace libtorrent;
|
||||
cacheTimer.start(); \
|
||||
VAR.clear()
|
||||
|
||||
#else
|
||||
// We don't support caching for Qt < 4.7 at the moment
|
||||
#define CACHED_VARIABLE(VARTYPE, VAR, DUR) \
|
||||
VARTYPE VAR
|
||||
|
||||
#define CACHED_VARIABLE_FOR_HASH(VARTYPE, VAR, DUR, HASH) \
|
||||
VARTYPE VAR
|
||||
|
||||
#endif
|
||||
|
||||
// Numerical constants
|
||||
static const int CACHE_DURATION_MS = 1500; // 1500ms
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user