mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-07 02:35:33 +08:00
refs #441 Rename COriginator to CIdentifier and rename COriginatorAware to CIdentifiable.
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
#define BLACKGUI_COMMANDINPUT_H
|
||||
|
||||
#include "blackguiexport.h"
|
||||
#include "blackmisc/originatoraware.h"
|
||||
#include "blackmisc/identifiable.h"
|
||||
#include <QLineEdit>
|
||||
#include <QString>
|
||||
|
||||
@@ -22,7 +22,7 @@ namespace BlackGui
|
||||
//! Specialized LineEdit for command inputs
|
||||
class BLACKGUI_EXPORT CCommandInput :
|
||||
public QLineEdit,
|
||||
public BlackMisc::COriginatorAware
|
||||
public BlackMisc::CIdentifiable
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace BlackGui
|
||||
|
||||
signals:
|
||||
//! Command was entered
|
||||
void commandEntered(const QString &command, const BlackMisc::COriginator &originator);
|
||||
void commandEntered(const QString &command, const BlackMisc::CIdentifier &originator);
|
||||
|
||||
private slots:
|
||||
//! Basic command validation
|
||||
|
||||
Reference in New Issue
Block a user