notifyController -> specialWB

This commit is contained in:
2025-11-26 11:19:11 +03:00
parent f6e96e002c
commit 44b6299e59
12 changed files with 53 additions and 43 deletions

View File

@@ -79,7 +79,7 @@ void VersionSelectWidget::on_createDuplicateButton_clicked()
if (selectedVersion == nullptr)
{
emit sigSendNotify(tr("Version not selected"));
emit sigSendNotify(tr("Version not selected"), this);
return;
}
@@ -95,7 +95,7 @@ void VersionSelectWidget::sendCopyEmit(QString newName)
if (selectedVersion == nullptr)
{
emit sigSendNotify(tr("Version not selected"));
emit sigSendNotify(tr("Version not selected"), this);
return;
}
@@ -107,7 +107,7 @@ void VersionSelectWidget::on_DeleteVersionButton_clicked()
{
if (selectedVersion == nullptr)
{
emit sigSendNotify(tr("Version not selected"));
emit sigSendNotify(tr("Version not selected"), this);
return;
}
@@ -118,7 +118,7 @@ void VersionSelectWidget::on_switchServerVersionButton_clicked()
{
if (selectedVersion == nullptr)
{
emit sigSendNotify(tr("Version not selected"));
emit sigSendNotify(tr("Version not selected"), this);
return;
}