mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Fix build with Qt < 4.7
This commit is contained in:
parent
4d76bd33fc
commit
4d601f5383
1 changed files with 14 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue