forked from qt-creator/qt-creator
Symbian: fixed a output window bug that came form fixing window related bug
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
@@ -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();
|
||||
|
Reference in New Issue
Block a user