mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
Removed redundant constructor
Removed constructor that was not needed. Also removes annoying "error" output when compiling.
This commit is contained in:
parent
fd4f76289c
commit
319b5d88b2
2 changed files with 2 additions and 3 deletions
|
|
@ -110,7 +110,6 @@ private:
|
|||
float price;
|
||||
public:
|
||||
DecklistCardNode(const QString &_name = QString(), int _number = 1, float _price = 0, InnerDecklistNode *_parent = 0) : AbstractDecklistCardNode(_parent), name(_name), number(_number), price(_price) { }
|
||||
DecklistCardNode(const QString &_name = QString(), int _number = 1, InnerDecklistNode *_parent = 0) : AbstractDecklistCardNode(_parent), name(_name), number(_number), price(0) { }
|
||||
DecklistCardNode(DecklistCardNode *other, InnerDecklistNode *_parent);
|
||||
int getNumber() const { return number; }
|
||||
void setNumber(int _number) { number = _number; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue