| 31 | using namespace SigDigger; |
| 32 | |
| 33 | LogDialog::LogDialog(QWidget *parent) : |
| 34 | QDialog(parent), |
| 35 | ui(new Ui::LogDialog) |
| 36 | { |
| 37 | this->logger = Suscan::Logger::getInstance(); |
| 38 | |
| 39 | ui->setupUi(this); |
| 40 | |
| 41 | this->setWindowTitle("Message log"); |
| 42 | |
| 43 | this->connectAll(); |
| 44 | } |
| 45 | |
| 46 | void |
| 47 | LogDialog::saveLog(QString path) |
nothing calls this directly
no test coverage detected