Big commit:
[someplayer] / src / busywidget.cpp
1 #include "busywidget.h"
2 #include "ui_busywidget.h"
3
4 BusyWidget::BusyWidget(QWidget *parent) :
5     QWidget(parent),
6     ui(new Ui::BusyWidget)
7 {
8     ui->setupUi(this);
9 }
10
11 BusyWidget::~BusyWidget()
12 {
13     delete ui;
14 }
15
16 void BusyWidget::setText(QString text) {
17         ui->label->setText(text);
18 }