mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 15:45:46 +08:00
refs #441 Rename COriginator to CIdentifier and rename COriginatorAware to CIdentifiable.
This commit is contained in:
@@ -17,7 +17,7 @@ namespace BlackGui
|
||||
|
||||
CCommandInput::CCommandInput(QWidget *parent) :
|
||||
QLineEdit(parent),
|
||||
COriginatorAware(this)
|
||||
CIdentifiable(this)
|
||||
{
|
||||
connect(this, &CCommandInput::returnPressed, this, &CCommandInput::ps_validateCommand);
|
||||
}
|
||||
@@ -28,7 +28,7 @@ namespace BlackGui
|
||||
this->setText(QString());
|
||||
if (commandLine.startsWith('.'))
|
||||
{
|
||||
emit commandEntered(commandLine, originator());
|
||||
emit commandEntered(commandLine, identifier());
|
||||
}
|
||||
}
|
||||
} // ns
|
||||
|
||||
Reference in New Issue
Block a user