mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 23:25:53 +08:00
refs #199, redirection of output streams (qDebug, qWarning, qCritical)
This is done in a common base class (of impl/proxy)
This commit is contained in:
@@ -15,7 +15,7 @@ namespace BlackCore
|
||||
/*!
|
||||
* \brief Application context proxy
|
||||
*/
|
||||
class CContextApplicationProxy : public IContextApplication
|
||||
class CContextApplicationProxy : public CContextApplicationBase
|
||||
{
|
||||
Q_OBJECT
|
||||
friend class CRuntime;
|
||||
@@ -33,7 +33,7 @@ namespace BlackCore
|
||||
|
||||
protected:
|
||||
//! Constructor
|
||||
CContextApplicationProxy(CRuntimeConfig::ContextMode mode, CRuntime *runtime) : IContextApplication(mode, runtime), m_dBusInterface(nullptr) {}
|
||||
CContextApplicationProxy(CRuntimeConfig::ContextMode mode, CRuntime *runtime) : CContextApplicationBase(mode, runtime), m_dBusInterface(nullptr) {}
|
||||
|
||||
//! DBus version constructor
|
||||
CContextApplicationProxy(const QString &serviceName, QDBusConnection &connection, CRuntimeConfig::ContextMode mode, CRuntime *runtime);
|
||||
|
||||
Reference in New Issue
Block a user