| 7 | #define COLOR_LABEL_SPACING 5 |
| 8 | |
| 9 | ColorButton::ColorButton(QWidget * parent) : QPushButton(parent) |
| 10 | { |
| 11 | this->setText(""); |
| 12 | connect(this, SIGNAL(clicked()), this, SLOT(click())); |
| 13 | } |
| 14 | |
| 15 | ColorButton::~ColorButton() |
| 16 | { |
nothing calls this directly
no outgoing calls
no test coverage detected