Fixed a bunch of compiler warnings (mingw compiler).
This commit is contained in:
@@ -88,4 +88,5 @@ void createInternetGameDialogImpl::keyPressEvent ( QKeyEvent * event ) {
|
||||
void createInternetGameDialogImpl::clearGamePassword(bool clear) {
|
||||
|
||||
if(!clear) { lineEdit_Password->clear(); }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#include "gamedata.h"
|
||||
|
||||
gameLobbyDialogImpl::gameLobbyDialogImpl(QWidget *parent, ConfigFile *c)
|
||||
: QDialog(parent), myW(NULL), mySession(NULL), myConfig(c), currentGameName(""), isAdmin(false)
|
||||
: QDialog(parent), myW(NULL), myConfig(c), mySession(NULL), currentGameName(""), isAdmin(false)
|
||||
{
|
||||
setupUi(this);
|
||||
|
||||
|
||||
@@ -1763,7 +1763,6 @@ void mainWindowImpl::myRaise(){
|
||||
pushButton_FoldAllin->setText("All-In");
|
||||
spinBox_set->show();
|
||||
|
||||
int tempHighestSet = 0;
|
||||
HandInterface *currentHand = mySession->getCurrentGame()->getCurrentHand();
|
||||
|
||||
spinBox_set->setMinimum(currentHand->getCurrentBeRo()->getHighestSet() - currentHand->getPlayerArray()[0]->getMySet() + currentHand->getCurrentBeRo()->getMinimumRaise());
|
||||
|
||||
@@ -55,4 +55,5 @@ QString QtHelper::getDataPath()
|
||||
|
||||
|
||||
return QDir::cleanPath(path) + "/";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -358,4 +358,5 @@ void settingsDialogImpl::setLogDir()
|
||||
void settingsDialogImpl::clearInternetGamePassword(bool clear) {
|
||||
|
||||
if(!clear) { lineEdit_InternetGamePassword->clear(); }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user