Remove redundant 'V' Embedded Software version text.

This commit is contained in:
Krad
2022-04-02 14:46:14 +08:00
parent 23065c6cc5
commit 19786da9fe

View File

@@ -77,7 +77,7 @@ void AboutWidget::initUi()
pMainLayout->addWidget(pGuiVer); pMainLayout->addWidget(pGuiVer);
pEmbededSoftVer = new QLabel(this); pEmbededSoftVer = new QLabel(this);
pEmbededSoftVer->setText(tr("Embedded Software V%1").arg(getEmbVersion())); pEmbededSoftVer->setText(tr("Embedded Software %1").arg(getEmbVersion()));
pEmbededSoftVer->setContentsMargins(subContentMargin, 0, 0, 0); pEmbededSoftVer->setContentsMargins(subContentMargin, 0, 0, 0);
pMainLayout->addWidget(pEmbededSoftVer); pMainLayout->addWidget(pEmbededSoftVer);
@@ -157,7 +157,7 @@ void AboutWidget::initUi()
pBtnHelp->setText(tr("?")); pBtnHelp->setText(tr("?"));
pCompanyCopyRight->setText(tr("Copyright © 2017-2020 Zhejiang Equilibrium Nine Medical Equipment Co., Ltd. All Rights Reversed")); pCompanyCopyRight->setText(tr("Copyright © 2017-2020 Zhejiang Equilibrium Nine Medical Equipment Co., Ltd. All Rights Reversed"));
pGuiVer->setText(QString(tr("GUI Software V%1")).arg(getGUIVersion())); pGuiVer->setText(QString(tr("GUI Software V%1")).arg(getGUIVersion()));
pEmbededSoftVer->setText(tr("Embedded Software V%1").arg(getEmbVersion())); pEmbededSoftVer->setText(tr("Embedded Software %1").arg(getEmbVersion()));
pReconSotfVer->setText(tr("Reconstruction Software V1.2")); pReconSotfVer->setText(tr("Reconstruction Software V1.2"));
pFEBVer->setText(tr("FEB Information")); pFEBVer->setText(tr("FEB Information"));
}); });