From 967e1a469e39c2f4e6fec7df5c24e703d66a3ac3 Mon Sep 17 00:00:00 2001 From: poixen Date: Wed, 5 Nov 2014 14:10:30 +0100 Subject: [PATCH] Removed comments - Removed comments as-per request --- cockatrice/src/tablezone.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/cockatrice/src/tablezone.cpp b/cockatrice/src/tablezone.cpp index ad473eeb..68d22c47 100644 --- a/cockatrice/src/tablezone.cpp +++ b/cockatrice/src/tablezone.cpp @@ -26,16 +26,11 @@ const QColor TableZone::GRADIENT_COLORLESS = QColor(255, 255, 255, 0); TableZone::TableZone(Player *_p, QGraphicsItem *parent) : SelectZone(_p, "table", true, false, true, parent), active(false) { - // repaint the table if the background image changes connect(settingsCache, SIGNAL(tableBgPathChanged()), this, SLOT(updateBgPixmap())); - - // reorganize the cards if the vertical coordinates are changed connect(settingsCache, SIGNAL(invertVerticalCoordinateChanged()), this, SLOT(reorganizeCards())); - - // load in any current background pixel map + updateBgPixmap(); - // calculate the width and height of the TableZone bounding rect height = 2 * BOX_LINE_WIDTH + 3 * (CARD_HEIGHT + 20) + 2 * PADDING_Y; width = MIN_WIDTH + 2 * MARGIN_X + 2 * BOX_LINE_WIDTH; currentMinimumWidth = MIN_WIDTH;