Little clean up, documentation, and column bets.

This commit is contained in:
greek 2024-06-04 21:10:39 +01:00
parent c2e9d6ff7d
commit 56a4bdccce
10 changed files with 150 additions and 17 deletions

View file

@ -60,7 +60,7 @@ void PlayerAreaModel::removeBet(BetType b, int n)
}
}
void PlayerAreaModel::cancelBet(int n) {
emit betCanceled(n);
void PlayerAreaModel::cancelBet(BetType b, int n) {
emit betCanceled(b, n);
}