forked from qt-creator/qt-creator
ProjectExplorer: Remove duplicated IOutputPane window titles
Change-Id: I9187feaccf137ca56f6db6c58367df84494e377f Reviewed-by: Marc Reilly <marc.reilly@gmail.com> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
committed by
Tim Jenssen
parent
1bca287df2
commit
f0b36b238a
@@ -150,7 +150,7 @@ CompileOutputWindow::CompileOutputWindow(QAction *cancelBuildAction) :
|
|||||||
{
|
{
|
||||||
Core::Context context(Constants::C_COMPILE_OUTPUT);
|
Core::Context context(Constants::C_COMPILE_OUTPUT);
|
||||||
m_outputWindow = new CompileOutputTextEdit(context);
|
m_outputWindow = new CompileOutputTextEdit(context);
|
||||||
m_outputWindow->setWindowTitle(tr("Compile Output"));
|
m_outputWindow->setWindowTitle(displayName());
|
||||||
m_outputWindow->setWindowIcon(Icons::WINDOW.icon());
|
m_outputWindow->setWindowIcon(Icons::WINDOW.icon());
|
||||||
m_outputWindow->setReadOnly(true);
|
m_outputWindow->setReadOnly(true);
|
||||||
m_outputWindow->setUndoRedoEnabled(false);
|
m_outputWindow->setUndoRedoEnabled(false);
|
||||||
|
|||||||
@@ -232,7 +232,7 @@ TaskWindow::TaskWindow() : d(new TaskWindowPrivate)
|
|||||||
|
|
||||||
d->m_listview->setModel(d->m_filter);
|
d->m_listview->setModel(d->m_filter);
|
||||||
d->m_listview->setFrameStyle(QFrame::NoFrame);
|
d->m_listview->setFrameStyle(QFrame::NoFrame);
|
||||||
d->m_listview->setWindowTitle(tr("Issues"));
|
d->m_listview->setWindowTitle(displayName());
|
||||||
d->m_listview->setSelectionMode(QAbstractItemView::SingleSelection);
|
d->m_listview->setSelectionMode(QAbstractItemView::SingleSelection);
|
||||||
Internal::TaskDelegate *tld = new Internal::TaskDelegate(this);
|
Internal::TaskDelegate *tld = new Internal::TaskDelegate(this);
|
||||||
d->m_listview->setItemDelegate(tld);
|
d->m_listview->setItemDelegate(tld);
|
||||||
|
|||||||
Reference in New Issue
Block a user