mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-07 02:35:33 +08:00
Style
This commit is contained in:
@@ -91,7 +91,7 @@ namespace BlackCore
|
||||
static IContextApplication *create(CCoreFacade *parent, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &connection);
|
||||
|
||||
//! Destructor
|
||||
virtual ~IContextApplication() {}
|
||||
virtual ~IContextApplication() override {}
|
||||
|
||||
signals:
|
||||
//! A component changes
|
||||
|
||||
@@ -147,10 +147,7 @@ namespace BlackCore
|
||||
out << content;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
CIdentifier CContextApplication::registerApplication(const CIdentifier &application)
|
||||
|
||||
@@ -12,18 +12,18 @@
|
||||
#ifndef BLACKCORE_CONTEXT_CONTEXTAPPLICATION_PROXY_H
|
||||
#define BLACKCORE_CONTEXT_CONTEXTAPPLICATION_PROXY_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
|
||||
#include "blackcore/blackcoreexport.h"
|
||||
#include "blackcore/context/contextapplication.h"
|
||||
#include "blackcore/corefacadeconfig.h"
|
||||
#include "blackmisc/identifier.h"
|
||||
#include "blackmisc/identifierlist.h"
|
||||
#include "blackmisc/statusmessage.h"
|
||||
#include "blackmisc/valuecache.h"
|
||||
|
||||
#include <QObject>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <QTimer>
|
||||
|
||||
class QDBusConnection;
|
||||
|
||||
namespace BlackMisc
|
||||
@@ -46,7 +46,7 @@ namespace BlackCore
|
||||
|
||||
public:
|
||||
//! Destructor
|
||||
virtual ~CContextApplicationProxy() {}
|
||||
virtual ~CContextApplicationProxy() override {}
|
||||
|
||||
public slots:
|
||||
//! @{
|
||||
|
||||
Reference in New Issue
Block a user