mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-11 00:24:47 -07:00
minor cleanups
This commit is contained in:
parent
0ef00dd437
commit
7e13352a95
29 changed files with 102 additions and 134 deletions
|
|
@ -95,7 +95,7 @@ Game::Game(CardDatabase *_db, Client *_client, QGraphicsScene *_scene, QMenu *_a
|
|||
|
||||
dlgStartGame = new DlgStartGame(db);
|
||||
connect(dlgStartGame, SIGNAL(newDeckLoaded(const QStringList &)), client, SLOT(submitDeck(const QStringList &)));
|
||||
connect(dlgStartGame, SIGNAL(finished(int)), this, SLOT(readyStart(int)));
|
||||
connect(dlgStartGame, SIGNAL(finished(int)), this, SLOT(readyStart()));
|
||||
}
|
||||
|
||||
Game::~Game()
|
||||
|
|
@ -144,10 +144,8 @@ void Game::playerListReceived(QList<ServerPlayer *> playerList)
|
|||
restartGameDialog();
|
||||
}
|
||||
|
||||
void Game::readyStart(int foo)
|
||||
void Game::readyStart()
|
||||
{
|
||||
Q_UNUSED(foo);
|
||||
|
||||
client->readyStart();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue