Fixed API change.

This commit is contained in:
2016-08-04 22:19:16 +02:00
parent cf7831c368
commit a82a0be883
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -150,7 +150,7 @@ void ShopForm::on_loadButton_clicked()
form->show();
}
void ShopForm::onCountChanged(int oldCount)
void ShopForm::onCountChanged(int oldCount/* = 0*/)
{
VoucherItem *item = qobject_cast<VoucherItem*>(sender());
if (item != NULL && item->count() == 0)
@@ -268,7 +268,7 @@ void ShopForm::addItem(QSharedPointer<IShopItem> item, int count)
srv.addShopItem(m_voucher, item, count);
this->m_itemsModel->addRow(m_voucher->items()[m_voucher->items().count() - 1]);
connect(m_voucher->items()[m_voucher->items().count() - 1].data(), SIGNAL(countChanged(int)), this, SLOT(onCountChanged(int)));
onCountChanged(0);
onCountChanged();
}
void ShopForm::on_receiptCombo_currentIndexChanged(int)
+1 -1
View File
@@ -32,7 +32,7 @@ private slots:
void on_loadButton_clicked();
void onCountChanged(int oldCount);
void onCountChanged(int oldCount = 0);
void on_receiptCombo_currentIndexChanged(int index);