TaskSectionView.cpp: fix a typo

This commit is contained in:
donovaly
2020-03-29 18:03:17 +02:00
committed by WandererFan
parent 8a1bcc925e
commit 9c5c91db10

View File

@@ -154,7 +154,7 @@ TaskSectionView::~TaskSectionView()
void TaskSectionView::setUiPrimary()
{
// Base::Console().Message("TSV::setUiPrimary()\n");
setWindowTitle(QObject::tr("Create SectionView"));
setWindowTitle(QObject::tr("Create Section View"));
std::string temp = m_base->getNameInDocument();
QString qTemp = Base::Tools::fromStdString(temp);
ui->leBaseView->setText(qTemp);
@@ -184,7 +184,7 @@ void TaskSectionView::setUiPrimary()
void TaskSectionView::setUiEdit()
{
// Base::Console().Message("TSV::setUiEdit()\n");
setWindowTitle(QObject::tr("Edit SectionView"));
setWindowTitle(QObject::tr("Edit Section View"));
std::string temp = m_base->getNameInDocument();
QString qTemp = Base::Tools::fromStdString(temp);