summaryrefslogtreecommitdiffstats
path: root/src/broadcast
diff options
context:
space:
mode:
authorkshitij98 <kgupta119@gmail.com>2018-05-25 10:11:58 +0530
committerkshitij98 <kgupta119@gmail.com>2018-05-25 10:22:11 +0530
commiteb992a378298249571d0219fb13715f9350a6cea (patch)
treee8a77a08dea5946b7175c6b39d7b8bf8a2191f82 /src/broadcast
parent72b1f91d4365cbc8319741c7c4205da7d4b5cefa (diff)
Coding standards conformance
Diffstat (limited to 'src/broadcast')
-rw-r--r--src/broadcast/broadcastmanager.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/broadcast/broadcastmanager.cpp b/src/broadcast/broadcastmanager.cpp
index 2a377538a0..ff9f9d4d32 100644
--- a/src/broadcast/broadcastmanager.cpp
+++ b/src/broadcast/broadcastmanager.cpp
@@ -93,13 +93,13 @@ void BroadcastManager::slotControlEnabled(double v) {
bool atLeastOneEnabled = false;
QList<BroadcastProfilePtr> profiles = m_pBroadcastSettings->profiles();
for(BroadcastProfilePtr profile : profiles) {
- if(profile->getEnabled()) {
+ if (profile->getEnabled()) {
atLeastOneEnabled = true;
break;
}
}
- if(!atLeastOneEnabled) {
+ if (!atLeastOneEnabled) {
m_pBroadcastEnabled->set(false);
emit(broadcastEnabled(0.0));
QMessageBox::warning(nullptr, tr("Action failed"),
@@ -112,7 +112,7 @@ void BroadcastManager::slotControlEnabled(double v) {
m_pStatusCO->forceSet(STATUSCO_UNCONNECTED);
QList<BroadcastProfilePtr> profiles = m_pBroadcastSettings->profiles();
for(BroadcastProfilePtr profile : profiles) {
- if(profile->connectionStatus() == BroadcastProfile::STATUS_FAILURE) {
+ if (profile->connectionStatus() == BroadcastProfile::STATUS_FAILURE) {
profile->setConnectionStatus(BroadcastProfile::STATUS_UNCONNECTED);
}
}
@@ -133,9 +133,9 @@ void BroadcastManager::slotProfilesChanged() {
QVector<NetworkOutputStreamWorkerPtr> workers = m_pNetworkStream->outputWorkers();
for(NetworkOutputStreamWorkerPtr pWorker : workers) {
ShoutConnectionPtr connection = qSharedPointerCast<ShoutConnection>(pWorker);
- if(connection) {
+ if (connection) {
BroadcastProfilePtr profile = connection->profile();
- if(profile->connectionStatus() == BroadcastProfile::STATUS_FAILURE
+ if (profile->connectionStatus() == BroadcastProfile::STATUS_FAILURE
&& !profile->getEnabled()) {
profile->setConnectionStatus(BroadcastProfile::STATUS_UNCONNECTED);
}
@@ -145,10 +145,10 @@ void BroadcastManager::slotProfilesChanged() {
}
bool BroadcastManager::addConnection(BroadcastProfilePtr profile) {
- if(!profile)
+ if (!profile)
return false;
- if(findConnectionForProfile(profile).isNull() == false) {
+ if (findConnectionForProfile(profile).isNull() == false) {
return false;
}
@@ -164,11 +164,11 @@ bool BroadcastManager::addConnection(BroadcastProfilePtr profile) {
}
bool BroadcastManager::removeConnection(BroadcastProfilePtr profile) {
- if(!profile)
+ if (!profile)
return false;
ShoutConnectionPtr connection = findConnectionForProfile(profile);
- if(connection) {
+ if (connection) {
disconnect(profile.data(), SIGNAL(connectionStatusChanged(int)),
this, SLOT(slotConnectionStatusChanged(int)));
@@ -188,10 +188,10 @@ ShoutConnectionPtr BroadcastManager::findConnectionForProfile(BroadcastProfilePt
QVector<NetworkOutputStreamWorkerPtr> workers = m_pNetworkStream->outputWorkers();
for(NetworkOutputStreamWorkerPtr pWorker : workers) {
ShoutConnectionPtr connection = qSharedPointerCast<ShoutConnection>(pWorker);
- if(connection.isNull())
+ if (connection.isNull())
continue;
- if(connection->profile() == profile) {
+ if (connection->profile() == profile) {
return connection;
}
}
@@ -207,7 +207,7 @@ void BroadcastManager::slotConnectionStatusChanged(int newState) {
// Collect status info
QList<BroadcastProfilePtr> profiles = m_pBroadcastSettings->profiles();
for (BroadcastProfilePtr profile : profiles) {
- if(!profile->getEnabled()) {
+ if (!profile->getEnabled()) {
continue;
}
enabledCount++;