diff --git a/src/gui/qt/mainwindow/mainwindowimpl.cpp b/src/gui/qt/mainwindow/mainwindowimpl.cpp index e4060bbc..92f8d260 100755 --- a/src/gui/qt/mainwindow/mainwindowimpl.cpp +++ b/src/gui/qt/mainwindow/mainwindowimpl.cpp @@ -2072,7 +2072,7 @@ int mainWindowImpl::getBetRaisePushButtonValue() { return betValue; } -int mainWindowImpl::getMyBetAmount(int mode) { +int mainWindowImpl::getMyBetAmount() { HandInterface *currentHand = mySession->getCurrentGame()->getCurrentHand(); diff --git a/src/gui/qt/mainwindow/mainwindowimpl.h b/src/gui/qt/mainwindow/mainwindowimpl.h index 12f18b7b..149c8fb0 100755 --- a/src/gui/qt/mainwindow/mainwindowimpl.h +++ b/src/gui/qt/mainwindow/mainwindowimpl.h @@ -206,18 +206,15 @@ public slots: void pushButtonFoldClicked(bool checked); void pushButtonAllInClicked(bool checked); - void myBetRaise(); void myCallCheck(); void myFold(); void myCheck(); int getMyCallAmount(); int getBetRaisePushButtonValue(); - int getMyBetAmount(int); + int getMyBetAmount(); void myCall(); - void myBet(); void mySet(); - void myRaise(); void myAllIn(); void myActionDone();