forked from qt-creator/qt-creator
Terminal: fix typo
Change-Id: I92ccb9cee06517d7be86e2393209096e1b47c36a Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
@@ -188,7 +188,7 @@ void TerminalWidget::setupPty()
|
|||||||
} else if (!errorMessage.isEmpty()) {
|
} else if (!errorMessage.isEmpty()) {
|
||||||
Core::MessageManager::writeFlashing(errorMessage);
|
Core::MessageManager::writeFlashing(errorMessage);
|
||||||
}
|
}
|
||||||
emit finised(exitCode);
|
emit finished(exitCode);
|
||||||
});
|
});
|
||||||
|
|
||||||
connect(m_process.get(), &Process::started, this, [this] {
|
connect(m_process.get(), &Process::started, this, [this] {
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ public:
|
|||||||
|
|
||||||
signals:
|
signals:
|
||||||
void started(qint64 pid);
|
void started(qint64 pid);
|
||||||
void finised(int exitCode);
|
void finished(int exitCode);
|
||||||
void cwdChanged(const Utils::FilePath &cwd);
|
void cwdChanged(const Utils::FilePath &cwd);
|
||||||
void commandChanged(const Utils::CommandLine &cmd);
|
void commandChanged(const Utils::CommandLine &cmd);
|
||||||
void titleChanged();
|
void titleChanged();
|
||||||
|
|||||||
Reference in New Issue
Block a user