Formatting, added icons for callsign

This commit is contained in:
Klaus Basan
2015-01-27 03:30:21 +01:00
parent ce86c902b5
commit 39150a1bc1
11 changed files with 31 additions and 5 deletions

View File

@@ -6,6 +6,7 @@
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
#include "context.h"
#include <QDebug>

View File

@@ -7,6 +7,8 @@
* contained in the LICENSE file.
*/
//! \file
#ifndef BLACKCORE_CONTEXT_H
#define BLACKCORE_CONTEXT_H

View File

@@ -95,9 +95,9 @@ namespace BlackCore
*/
void CContextNetwork::gracefulShutdown()
{
if (this->m_vatsimBookingReader) this->m_vatsimBookingReader->quit();
if (this->m_vatsimDataFileReader) this->m_vatsimDataFileReader->quit();
if (this->isConnected()) this->disconnectFromNetwork();
if (this->m_vatsimBookingReader) { this->m_vatsimBookingReader->quit(); }
if (this->m_vatsimDataFileReader) { this->m_vatsimDataFileReader->quit(); }
if (this->isConnected()) { this->disconnectFromNetwork(); }
}
/*