mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-29 05:48:47 +03:00
Merge pull request #1782 from sorokin/alert-disp-qt5
Fix alertdispatcher.cpp compilability on Qt5.
This commit is contained in:
commit
8f32f86453
1 changed files with 8 additions and 0 deletions
|
@ -82,13 +82,21 @@ void QAlertDispatcher::getPendingAlerts(std::deque<libtorrent::alert*>& out, uns
|
|||
|
||||
void QAlertDispatcher::dispatch(QSharedPointer<QAtomicPointer<QAlertDispatcher> > tag,
|
||||
std::auto_ptr<libtorrent::alert> alert_ptr) {
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
|
||||
QAlertDispatcher* that = tag->loadAcquire();
|
||||
#else
|
||||
QAlertDispatcher* that = *tag;
|
||||
#endif
|
||||
if (!that)
|
||||
return;
|
||||
|
||||
QMutexLocker lock(&(that->alerts_mutex));
|
||||
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
|
||||
if (!tag->load())
|
||||
#else
|
||||
if (!*tag)
|
||||
#endif
|
||||
return;
|
||||
|
||||
bool was_empty = that->alerts.empty();
|
||||
|
|
Loading…
Reference in a new issue