| 28 | using namespace SigDigger; |
| 29 | |
| 30 | SymViewTab::SymViewTab(QWidget *parent) : |
| 31 | QWidget(parent), |
| 32 | ui(new Ui::SymViewTab) |
| 33 | { |
| 34 | ui->setupUi(this); |
| 35 | |
| 36 | #ifdef __APPLE__ |
| 37 | // Qt for MacOS X does not now how to handle proper button styling. We |
| 38 | // just get rid of it for the sake of clarity. |
| 39 | this->ui->recordButton->setStyleSheet(""); |
| 40 | #endif // __APPLE__ |
| 41 | |
| 42 | this->connectAll(); |
| 43 | } |
| 44 | |
| 45 | SymViewTab::~SymViewTab() |
| 46 | { |
nothing calls this directly
no test coverage detected