refs #441 Rename COriginator to CIdentifier and rename COriginatorAware to CIdentifiable.

This commit is contained in:
Mathew Sutcliffe
2015-06-05 12:57:40 +01:00
parent a4ca75c5c7
commit d4d862927e
90 changed files with 503 additions and 500 deletions

View File

@@ -27,7 +27,7 @@ using namespace BlackGui::Components;
CSwiftCore::CSwiftCore(const SetupInfo &info, QWidget *parent) :
CSystemTrayWindow(CIcons::swiftNova24(), parent),
COriginatorAware(this),
CIdentifiable(this),
ui(new Ui::CSwiftCore)
{
ui->setupUi(this);

View File

@@ -16,7 +16,7 @@
#include "blackgui/systemtraywindow.h"
#include "blackgui/components/enableforruntime.h"
#include "blackmisc/statusmessage.h"
#include "blackmisc/originatoraware.h"
#include "blackmisc/identifiable.h"
#include <QScopedPointer>
@@ -25,7 +25,7 @@ namespace Ui { class CSwiftCore; }
//! swift core control
class CSwiftCore :
public BlackGui::CSystemTrayWindow,
public BlackMisc::COriginatorAware,
public BlackMisc::CIdentifiable,
public BlackGui::Components::CEnableForRuntime
{
Q_OBJECT