Symbian: fixed a output window bug that came form fixing window related bug

This commit is contained in:
Pawel Polanski
2011-04-05 16:48:23 +02:00
parent e851ce2d1d
commit 0cc474230c
2 changed files with 10 additions and 0 deletions

View File

@@ -252,3 +252,11 @@ char S60RunControlBase::installationDrive() const
{
return m_installationDrive;
}
void S60RunControlBase::appendMessage(const QString &msg, ProjectExplorer::OutputFormat format, bool addNewLine)
{
if (addNewLine)
RunControl::appendMessage(msg + '\n', format);
else
RunControl::appendMessage(msg, format);
}

View File

@@ -78,8 +78,10 @@ protected:
private:
void startLaunching();
protected slots:
void reportLaunchFinished();
void appendMessage(const QString &msg, ProjectExplorer::OutputFormat format, bool addNewLine=true);
private slots:
void handleFinished();