forked from qt-creator/qt-creator
Autotest: edit UI text and messages
Fix capitalization, punctuation, and grammar issues. Change-Id: Ie5044a1a3445ea078fe52ae20b1b4eec747e3de4 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
committed by
Riitta-Leena Miettinen
parent
dbf11d4520
commit
ae7b3e8404
@@ -196,13 +196,13 @@ void TestNavigationWidget::onParsingFinished()
|
||||
void TestNavigationWidget::initializeFilterMenu()
|
||||
{
|
||||
QAction *action = new QAction(m_filterMenu);
|
||||
action->setText(tr("Show init and cleanup functions"));
|
||||
action->setText(tr("Show Init and Cleanup Functions"));
|
||||
action->setCheckable(true);
|
||||
action->setChecked(false);
|
||||
action->setData(TestTreeSortFilterModel::ShowInitAndCleanup);
|
||||
m_filterMenu->addAction(action);
|
||||
action = new QAction(m_filterMenu);
|
||||
action->setText(tr("Show data functions"));
|
||||
action->setText(tr("Show Data Functions"));
|
||||
action->setCheckable(true);
|
||||
action->setChecked(false);
|
||||
action->setData(TestTreeSortFilterModel::ShowTestData);
|
||||
|
||||
Reference in New Issue
Block a user