summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Krus <mike.krus@kdab.com>2017-05-01 13:39:56 +0100
committerMike Krus <mike.krus@kdab.com>2017-05-02 08:46:17 +0000
commit1cf81a67af6540d496439deeb43dab4028ff4bfb (patch)
treec5c98a48d7d0c7e9c429219358f1d47719f7bbc3
parent54b097b495ca483123bf38966232428267428944 (diff)
Add missing emit (clazy reports)
Change-Id: I3e893a8dff15f4822ba1cde102a50d16daf042ee Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
-rw-r--r--src/render/frontend/qlevelofdetail.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/frontend/qlevelofdetail.cpp b/src/render/frontend/qlevelofdetail.cpp
index df169876e..07dcdf82e 100644
--- a/src/render/frontend/qlevelofdetail.cpp
+++ b/src/render/frontend/qlevelofdetail.cpp
@@ -442,7 +442,7 @@ void QLevelOfDetail::setThresholds(const QVector<qreal> &thresholds)
Q_D(QLevelOfDetail);
if (d->m_thresholds != thresholds) {
d->m_thresholds = thresholds;
- thresholdsChanged(d->m_thresholds);
+ emit thresholdsChanged(d->m_thresholds);
}
}