Fixed yet-another-retarded warning.
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
#include "GameObserver.h"
|
#include "GameObserver.h"
|
||||||
|
|
||||||
CardDisplay::CardDisplay(GameObserver* game) :
|
CardDisplay::CardDisplay(GameObserver* game) :
|
||||||
mId(0), PlayGuiObjectController(game)
|
PlayGuiObjectController(game), mId(0)
|
||||||
{
|
{
|
||||||
tc = NULL;
|
tc = NULL;
|
||||||
listener = NULL;
|
listener = NULL;
|
||||||
@@ -21,7 +21,7 @@ CardDisplay::CardDisplay(GameObserver* game) :
|
|||||||
|
|
||||||
CardDisplay::CardDisplay(int id, GameObserver* game, int _x, int _y, JGuiListener * _listener, TargetChooser * _tc,
|
CardDisplay::CardDisplay(int id, GameObserver* game, int _x, int _y, JGuiListener * _listener, TargetChooser * _tc,
|
||||||
int _nb_displayed_items) :
|
int _nb_displayed_items) :
|
||||||
mId(id), PlayGuiObjectController(game), x(_x), y(_y)
|
PlayGuiObjectController(game), mId(id), x(_x), y(_y)
|
||||||
{
|
{
|
||||||
tc = _tc;
|
tc = _tc;
|
||||||
listener = _listener;
|
listener = _listener;
|
||||||
|
|||||||
Reference in New Issue
Block a user