mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
SpecMsgBox в процессе исправления
This commit is contained in:
@@ -114,7 +114,7 @@ void DialogVersionControl::sendCopyEmit(QString newName)
|
||||
if (selectedVersion == nullptr)
|
||||
{
|
||||
QString text = tr("Version not selected");
|
||||
SpecialMessageBox(this, SpecialMessageBox::TypeSpecMsgBox::warningClose, text).exec();
|
||||
SpecMsgBox(this, SpecMsgBox::TypeSpecMsgBox::warningClose, text).exec();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -127,7 +127,7 @@ void DialogVersionControl::on_createDuplicateButton_clicked()
|
||||
if (selectedVersion == nullptr)
|
||||
{
|
||||
QString text = tr("Version not selected");
|
||||
SpecialMessageBox(this, SpecialMessageBox::TypeSpecMsgBox::warningClose, text).exec();
|
||||
SpecMsgBox(this, SpecMsgBox::TypeSpecMsgBox::warningClose, text).exec();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -160,7 +160,7 @@ void DialogVersionControl::on_deleteVersionButton_clicked()
|
||||
if (selectedVersion == nullptr)
|
||||
{
|
||||
QString text = tr("Version not selected");
|
||||
SpecialMessageBox(this, SpecialMessageBox::TypeSpecMsgBox::warningClose, text).exec();
|
||||
SpecMsgBox(this, SpecMsgBox::TypeSpecMsgBox::warningClose, text).exec();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -172,7 +172,7 @@ void DialogVersionControl::on_switchServerVersionButton_clicked()
|
||||
if (selectedVersion == nullptr)
|
||||
{
|
||||
QString text = tr("Version not selected");
|
||||
SpecialMessageBox(this, SpecialMessageBox::TypeSpecMsgBox::warningClose, text).exec();
|
||||
SpecMsgBox(this, SpecMsgBox::TypeSpecMsgBox::warningClose, text).exec();
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user