diff --git a/cockatrice/src/game/zones/card_zone.cpp b/cockatrice/src/game/zones/card_zone.cpp index 8c6ec3d58..f444cb464 100644 --- a/cockatrice/src/game/zones/card_zone.cpp +++ b/cockatrice/src/game/zones/card_zone.cpp @@ -40,11 +40,6 @@ CardZone::CardZone(Player *_p, &CardZone::refreshCardInfos); } -CardZone::~CardZone() -{ - qCDebug(CardZoneLog) << "CardZone destructor: " << name; -} - void CardZone::retranslateUi() { for (int i = 0; i < cards.size(); ++i) diff --git a/cockatrice/src/game/zones/card_zone.h b/cockatrice/src/game/zones/card_zone.h index 20f58d4ba..55ea606ab 100644 --- a/cockatrice/src/game/zones/card_zone.h +++ b/cockatrice/src/game/zones/card_zone.h @@ -67,7 +67,6 @@ public: bool _contentsKnown, QGraphicsItem *parent = nullptr, bool _isView = false); - ~CardZone(); void retranslateUi(); void clearContents(); bool getHasCardAttr() const diff --git a/cockatrice/src/game/zones/view_zone.cpp b/cockatrice/src/game/zones/view_zone.cpp index 9cc6bdf67..6da6c89b7 100644 --- a/cockatrice/src/game/zones/view_zone.cpp +++ b/cockatrice/src/game/zones/view_zone.cpp @@ -40,11 +40,6 @@ ZoneViewZone::ZoneViewZone(Player *_p, } } -ZoneViewZone::~ZoneViewZone() -{ - qDebug("ZoneViewZone destructor"); -} - /** * Deletes this ZoneView and removes it from the origZone's views. * You should normally call this method instead of deleteLater() diff --git a/cockatrice/src/game/zones/view_zone.h b/cockatrice/src/game/zones/view_zone.h index 65bcc4018..196b1bca4 100644 --- a/cockatrice/src/game/zones/view_zone.h +++ b/cockatrice/src/game/zones/view_zone.h @@ -65,7 +65,6 @@ public: bool _writeableRevealZone = false, QGraphicsItem *parent = nullptr, bool _isReversed = false); - ~ZoneViewZone(); QRectF boundingRect() const; void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); void reorganizeCards();