Refactoring

This commit is contained in:
Siegfried Siegert 2023-06-15 18:49:13 +02:00
parent b10e597e59
commit 7a9f837b88
Signed by: SiegfriedSiegert
GPG Key ID: 68371E015E8F0B03
2 changed files with 3 additions and 3 deletions

View File

@ -114,7 +114,7 @@ void ATBDeviceControllerPlugin::requestStopCashInput()
hw->cash_stopPayment();
// we need new cash value in application...
QTimer::singleShot(500, this, SLOT(onCashPayStoped()));
QTimer::singleShot(500, this, SLOT(onCashPayStopedSuccess()));
}
void ATBDeviceControllerPlugin::cashCollect()
@ -455,7 +455,7 @@ void ATBDeviceControllerPlugin::onCashPayStopByTimeout()
"");
}
void ATBDeviceControllerPlugin::onCashPayStoped()
void ATBDeviceControllerPlugin::onCashPayStopedSuccess()
{
// DEBUG
qCritical() << "ATBDeviceControllerPlugin::onCashPayStoped()";

View File

@ -138,7 +138,7 @@ private slots:
// cash payment
void onCashGotCoin();
void onCashPayStoped();
void onCashPayStopedSuccess();
void onCashPayStopByMax();
void onCashPayStopByEscrow();
void onCashPayStopByError();