| 16 | using namespace KDChart; |
| 17 | |
| 18 | MainWindow::MainWindow(QWidget *parent) |
| 19 | : QWidget(parent) |
| 20 | { |
| 21 | setupUi(this); |
| 22 | |
| 23 | auto *chartLayout = new QHBoxLayout(chartFrame); |
| 24 | widget = new ZoomWidget(chartFrame); |
| 25 | widget->setGlobalLeadingRight(10); |
| 26 | chartLayout->addWidget(widget); |
| 27 | } |
nothing calls this directly
no test coverage detected