minor hover bug fix

This commit is contained in:
Max-Wilhelm Bruker 2010-11-10 02:04:40 +01:00
parent c4cb0f6354
commit c8779032c8
5 changed files with 15 additions and 13 deletions

View file

@ -17,7 +17,6 @@ class CardItem : public AbstractCardItem {
private:
CardZone *zone;
int id;
qreal realZValue;
bool attacking;
bool facedown;
QMap<int, int> counters;
@ -48,8 +47,6 @@ public:
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
QPoint getGridPoint() const { return gridPoint; }
void setGridPoint(const QPoint &_gridPoint) { gridPoint = _gridPoint; }
qreal getRealZValue() const { return realZValue; }
void setRealZValue(qreal _zValue);
QPoint getGridPos() const { return gridPoint; }
Player *getOwner() const { return owner; }
int getId() const { return id; }