• 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

90.0
/src/WhiskerToolbox/TableDesignerWidget/TableInfoWidget.cpp
1
#include "TableInfoWidget.hpp"
2
#include "ui_TableInfoWidget.h"
3

4
TableInfoWidget::TableInfoWidget(QWidget * parent)
16✔
5
    : QWidget(parent),
6
      ui(new Ui::TableInfoWidget) {
16✔
7
    ui->setupUi(this);
16✔
8
    connect(ui->save_info_btn, &QPushButton::clicked, this, &TableInfoWidget::saveClicked);
16✔
9
}
16✔
10

11
TableInfoWidget::~TableInfoWidget() { delete ui; }
32✔
12

13
QString TableInfoWidget::getName() const { return ui->table_name_edit->text().trimmed(); }
6✔
UNCOV
14
QString TableInfoWidget::getDescription() const { return ui->table_description_edit->toPlainText().trimmed(); }
×
15
void TableInfoWidget::setName(QString const & name) { ui->table_name_edit->setText(name); }
68✔
16
void TableInfoWidget::setDescription(QString const & desc) { ui->table_description_edit->setPlainText(desc); }
68✔
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