summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-11-14 12:57:46 +0100
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-11-14 12:57:46 +0100
commitbd869ff4fa780fcbcb35f5cf58d91986451719ec (patch)
treec74b56ec3e8e15020a483111fe9a49626ee5ccbd /src
parentf04aaaf1ea567b57b2da2ac62a6ed17fef1fe9ec (diff)
DlgPrefLv2: Use QLabel::clear() instead of setText(QLatin1String(""))
Diffstat (limited to 'src')
-rw-r--r--src/preferences/dialog/dlgpreflv2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preferences/dialog/dlgpreflv2.cpp b/src/preferences/dialog/dlgpreflv2.cpp
index 0cf0a15ee9..ebc5f24193 100644
--- a/src/preferences/dialog/dlgpreflv2.cpp
+++ b/src/preferences/dialog/dlgpreflv2.cpp
@@ -61,7 +61,7 @@ DlgPrefLV2::DlgPrefLV2(QWidget* pParent, LV2Backend* lv2Backend,
button->setProperty("id", QVariant(pEffectManifest->id()));
connect(button, SIGNAL(clicked()), this, SLOT(slotDisplayParameters()));
}
- effectNameLabel->setText(QLatin1String(""));
+ effectNameLabel->clear();
}
DlgPrefLV2::~DlgPrefLV2() {