• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

paulmthompson / WhiskerToolbox / 17816075334

18 Sep 2025 02:21AM UTC coverage: 71.944% (-0.06%) from 72.003%
17816075334

push

github

paulmthompson
clang tidy fixes

9 of 15 new or added lines in 4 files covered. (60.0%)

194 existing lines in 7 files now uncovered.

39627 of 55080 relevant lines covered (71.94%)

1299.21 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

42.86
/src/WhiskerToolbox/TableDesignerWidget/TableExportWidget.cpp
1
#include "TableExportWidget.hpp"
2
#include "ui_TableExportWidget.h"
3

4
#include <QPushButton>
5

6
TableExportWidget::TableExportWidget(QWidget * parent)
16✔
7
    : QWidget(parent),
8
      ui(new Ui::TableExportWidget) {
16✔
9
    ui->setupUi(this);
16✔
10
    connect(ui->export_csv_btn, &QPushButton::clicked, this, &TableExportWidget::exportClicked);
16✔
11
}
16✔
12

13
TableExportWidget::~TableExportWidget() { delete ui; }
32✔
14

15
QString TableExportWidget::getDelimiterText() const {
×
UNCOV
16
    return ui->export_delimiter_combo ? ui->export_delimiter_combo->currentText() : QString("Comma");
×
17
}
18

19
QString TableExportWidget::getLineEndingText() const {
×
UNCOV
20
    return ui->export_line_ending_combo ? ui->export_line_ending_combo->currentText() : QString("LF (\\n)");
×
21
}
22

23
int TableExportWidget::getPrecision() const {
×
UNCOV
24
    return ui->export_precision_spinbox ? ui->export_precision_spinbox->value() : 3;
×
25
}
26

27
bool TableExportWidget::isHeaderIncluded() const {
×
UNCOV
28
    return ui->export_header_checkbox && ui->export_header_checkbox->isChecked();
×
29
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc