diff --git a/src/gui/qt/mainwindow/mainwindowimpl.cpp b/src/gui/qt/mainwindow/mainwindowimpl.cpp index d3cf9080..543f7a0c 100755 --- a/src/gui/qt/mainwindow/mainwindowimpl.cpp +++ b/src/gui/qt/mainwindow/mainwindowimpl.cpp @@ -934,11 +934,11 @@ void mainWindowImpl::initGui(int speed) //restliche Singleshots killen!!! stopTimer(); - label_Pot->setText("Pot"); - label_Total->setText("Total:"); - label_Sets->setText("Sets:"); - label_handNumber->setText("Hand:"); - label_gameNumber->setText("Game:"); + label_Pot->setText("Pot"); + label_Total->setText("Total:"); + label_Sets->setText("Sets:"); + label_handNumber->setText("Hand:"); + label_gameNumber->setText("Game:"); //Tools und Board aufhellen und enablen // QPalette tempPalette = groupBox_board->palette(); @@ -988,7 +988,7 @@ void mainWindowImpl::refreshSet() { int i; for (i=0; igetCurrentGame()->getCurrentHand()->getPlayerArray()[i]->getMySet() == 0) setLabelArray[i]->setText(""); - else setLabelArray[i]->setText("

Set: "+QString::number(mySession->getCurrentGame()->getCurrentHand()->getPlayerArray()[i]->getMySet(),10)+" $

"); + else setLabelArray[i]->setText("Set: "+QString::number(mySession->getCurrentGame()->getCurrentHand()->getPlayerArray()[i]->getMySet(),10)+" $"); } } @@ -1170,7 +1170,7 @@ void mainWindowImpl::refreshCash() { if(currentHand->getPlayerArray()[i]->getMyActiveStatus()) { cashLabelArray[i]->setText(QString::number(currentHand->getPlayerArray()[i]->getMyCash(),10)+" $"); - cashTopLabelArray[i]->setText("Cash:"); + cashTopLabelArray[i]->setText("Cash:"); } else { cashLabelArray[i]->setText(""); @@ -1339,8 +1339,8 @@ void mainWindowImpl::refreshChangePlayer() { void mainWindowImpl::refreshPot() { HandInterface *currentHand = mySession->getCurrentGame()->getCurrentHand(); - textLabel_Sets->setText(""+QString::number(currentHand->getBoard()->getSets(),10)+" $"); - textLabel_Pot->setText(""+QString::number(currentHand->getBoard()->getPot(),10)+" $"); + textLabel_Sets->setText(QString::number(currentHand->getBoard()->getSets(),10)+" $"); + textLabel_Pot->setText(QString::number(currentHand->getBoard()->getPot(),10)+" $"); } void mainWindowImpl::guiUpdateDone() { @@ -2165,12 +2165,12 @@ void mainWindowImpl::postRiverRunAnimation5() { } } else { - label_Pot->setText("Pot"); + label_Pot->setText("Pot"); for(i=0; igetPlayerArray()[i]->getMyActiveStatus() && currentHand->getPlayerArray()[i]->getMyAction() != 1 && currentHand->getPlayerArray()[i]->getMyCardsValueInt() == currentHand->getCurrentBeRo()->getHighestCardsValue() ) { - cashTopLabelArray[i]->setText("Cash:"); + cashTopLabelArray[i]->setText("Cash:"); } } }