refs #485, renamed (CContextRuntime) to CCoreFacade

https://dev.vatsim-germany.org/issues/485#note-6
This commit is contained in:
Klaus Basan
2016-02-11 22:14:20 +01:00
committed by Mathew Sutcliffe
parent 79cbcbc88f
commit d9aac6427b
52 changed files with 263 additions and 245 deletions

View File

@@ -8,7 +8,7 @@
*/
#include "swiftcore.h"
#include "blackcore/contextruntime.h"
#include "blackcore/corefacade.h"
#include "blackcore/contextapplication.h"
#include "blackcore/contextapplicationimpl.h"
#include "blackmisc/dbusserver.h"

View File

@@ -143,11 +143,11 @@ void CSwiftCore::startCore(const SetupInfo &setup)
// context
this->createRuntime(setup.m_coreAudio ?
CRuntimeConfig::forCoreAllLocalInDBus(setup.m_dbusAddress) :
CRuntimeConfig::forCoreAllLocalInDBusNoAudio(setup.m_dbusAddress),
CCoreFacadeConfig::forCoreAllLocalInDBus(setup.m_dbusAddress) :
CCoreFacadeConfig::forCoreAllLocalInDBusNoAudio(setup.m_dbusAddress),
this);
CEnableForRuntime::setRuntimeForComponents(this->getRuntime(), this);
connect(ui->le_CommandLineInput, &CCommandInput::commandEntered, getRuntime(), &CRuntime::parseCommandLine);
connect(ui->le_CommandLineInput, &CCommandInput::commandEntered, getRuntime(), &CCoreFacade::parseCommandLine);
}
void CSwiftCore::stopCore()

View File

@@ -12,7 +12,7 @@
#ifndef SWIFTCORE_H
#define SWIFTCORE_H
#include "blackcore/contextruntime.h"
#include "blackcore/corefacade.h"
#include "blackgui/systemtraywindow.h"
#include "blackgui/components/enableforruntime.h"
#include "blackmisc/statusmessage.h"