1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-01-15 10:08:08 +01:00

Replace QString::null with QString()

This commit is contained in:
Jonas Kvinge 2019-07-08 22:24:00 +02:00
parent beeba88ea5
commit 25f6231e9d

View File

@ -42,7 +42,7 @@ BusyIndicator::BusyIndicator(const QString &text, QWidget* parent)
BusyIndicator::BusyIndicator(QWidget* parent)
: QWidget(parent) {
Init(QString::null);
Init(QString());
}
void BusyIndicator::Init(const QString &text) {
@ -64,6 +64,7 @@ void BusyIndicator::Init(const QString &text) {
layout->addWidget(label_);
set_text(text);
}
BusyIndicator::~BusyIndicator() {