Fix Q_INTERFACES warnings

Fix #88
This commit is contained in:
Daenyth 2014-06-22 22:32:53 -04:00
parent 4574df0a2e
commit ea08fe168c
6 changed files with 9 additions and 1 deletions

View file

@ -58,7 +58,8 @@ class PendingCommand;
class PlayerArea : public QObject, public QGraphicsItem {
Q_OBJECT
private:
Q_INTERFACES(QGraphicsItem)
private:
QBrush bgPixmapBrush;
QRectF bRect;
private slots:
@ -76,6 +77,7 @@ public:
class Player : public QObject, public QGraphicsItem {
Q_OBJECT
Q_INTERFACES(QGraphicsItem)
signals:
void openDeckEditor(const DeckLoader *deck);
void newCardAdded(AbstractCardItem *card);