Browse Source

Fix build with Qt < 4.7

adaptive-webui-19844
Christophe Dumez 12 years ago
parent
commit
4d601f5383
  1. 14
      src/webui/btjson.cpp

14
src/webui/btjson.cpp

@ -35,10 +35,14 @@ @@ -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; @@ -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…
Cancel
Save