merge addToOutputWindow and addToOutputWindowInline

This commit is contained in:
hjk
2011-01-07 11:34:25 +01:00
parent f48de4f567
commit 8fd480bd21
15 changed files with 70 additions and 93 deletions

View File

@@ -119,12 +119,12 @@ void MaemoRunControl::handleRemoteProcessFinished(qint64 exitCode)
void MaemoRunControl::handleRemoteOutput(const QByteArray &output)
{
emit addToOutputWindowInline(this, QString::fromUtf8(output), false);
emit addToOutputWindow(this, QString::fromUtf8(output), false, true);
}
void MaemoRunControl::handleRemoteErrorOutput(const QByteArray &output)
{
emit addToOutputWindowInline(this, QString::fromUtf8(output), true);
emit addToOutputWindow(this, QString::fromUtf8(output), true, true);
}
void MaemoRunControl::handleProgressReport(const QString &progressString)
@@ -134,7 +134,7 @@ void MaemoRunControl::handleProgressReport(const QString &progressString)
void MaemoRunControl::handleMountDebugOutput(const QString &output)
{
emit addToOutputWindowInline(this, output, true);
emit addToOutputWindow(this, output, true, true);
}
bool MaemoRunControl::isRunning() const