Code formatting/indentation unified in trunk
[qtrapids] / src / engine / AlertWaiterThread.cpp
index 4f18636..0274064 100644 (file)
 
 // Constants:
 // Timeout for waiting alerts
-const libtorrent::time_duration ALERT_WAIT_TIMEOUT 
-               = libtorrent::time_duration(libtorrent::seconds(15));
+const libtorrent::time_duration ALERT_WAIT_TIMEOUT
+= libtorrent::time_duration(libtorrent::seconds(15));
 
 
-AlertWaiterThread::AlertWaiterThread(TorrentSession *const session, QObject* parent) : 
-               QThread(parent),
-               btSession_(session)
+AlertWaiterThread::AlertWaiterThread(TorrentSession *const session, QObject* parent) :
+        QThread(parent),
+        btSession_(session)
 {
 }
 
@@ -43,29 +43,32 @@ AlertWaiterThread::~AlertWaiterThread()
 
 void AlertWaiterThread::allAlerts(bool enable)
 {
-       // If all enabled, set all alert cateogries:
-       if (enable) {
-               btSession_->set_alert_mask(libtorrent::alert::all_categories);
-       } else {
-               // Otherwise set to default, which is only error notifications.
-               btSession_->set_alert_mask(libtorrent::alert::error_notification);
-       }
+    // If all enabled, set all alert cateogries:
+    if (enable)
+    {
+        btSession_->set_alert_mask(libtorrent::alert::all_categories);
+    }
+    else
+    {
+        // Otherwise set to default, which is only error notifications.
+        btSession_->set_alert_mask(libtorrent::alert::error_notification);
+    }
 }
 
 
 void AlertWaiterThread::run()
 {
-       Alert const *alertTemp = NULL;
-       while (true)
-       {
+    Alert const *alertTemp = NULL;
+    while (true)
+    {
 #ifdef QTRAPIDS_DEBUG
-               qDebug() << "AlertWaiter running";
+        qDebug() << "AlertWaiter running";
 #endif
-               // wait_for_alert() call blocks. Returns libtorrent alert. 
-               // Returns NULL, if no alerts in timeout period.
-               alertTemp = btSession_->wait_for_alert(ALERT_WAIT_TIMEOUT);
-               emit alert(alertTemp);
-               // 2000 us = 2ms. Gives main thread time to handle alert signal.
-               usleep(2000); 
-       }
+        // wait_for_alert() call blocks. Returns libtorrent alert.
+        // Returns NULL, if no alerts in timeout period.
+        alertTemp = btSession_->wait_for_alert(ALERT_WAIT_TIMEOUT);
+        emit alert(alertTemp);
+        // 2000 us = 2ms. Gives main thread time to handle alert signal.
+        usleep(2000);
+    }
 }