Gui: Rename 'Output window' to 'Report view'

Closes #7659
This commit is contained in:
luz paz
2022-11-07 20:18:36 -05:00
committed by Chris Hennes
parent 549774e953
commit 30b918dac8
6 changed files with 10 additions and 10 deletions

View File

@@ -69,7 +69,7 @@ ReportView::ReportView( QWidget* parent )
tabLayout->addWidget( tabWidget, 0, 0 );
// create the output window
// create the output window for 'Report view'
tabOutput = new ReportOutput();
tabOutput->setWindowTitle(tr("Output"));
tabOutput->setWindowIcon(BitmapFactory().pixmap("MacroEditor"));
@@ -571,7 +571,7 @@ void ReportOutput::contextMenuEvent ( QContextMenuEvent * e )
errAct->setChecked(bErr);
auto showOnMenu = new QMenu (optionMenu);
showOnMenu->setTitle(tr("Show output window on"));
showOnMenu->setTitle(tr("Show Report view on"));
optionMenu->addMenu(showOnMenu);
QAction* showNormAct = showOnMenu->addAction(tr("Normal messages"), this, SLOT(onToggleShowReportViewOnNormalMessage()));