summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAkihito Izawa <akihito.izawa@qt.io>2018-04-12 15:52:18 +0900
committerAkihito Izawa <akihito.izawa@qt.io>2018-04-13 06:33:35 +0000
commit26355be54d7e7aa1c8e6a7adcb6bb9de68700dd9 (patch)
tree517e5150ef6df14868a8242330df5814ec7c6d86 /src
parent66cc08961f8a6a0b499a22ae205e639eb821e0b7 (diff)
QStyleHints: emit correct signal when calling setMouseQuickSelectionThreshold
Change-Id: Ieb76ecc406c25ca11a108775ebd46a8e597401b5 Reviewed-by: Andy Shaw <andy.shaw@qt.io> Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/gui/kernel/qstylehints.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qstylehints.cpp b/src/gui/kernel/qstylehints.cpp
index b2d968c046..48060a2c37 100644
--- a/src/gui/kernel/qstylehints.cpp
+++ b/src/gui/kernel/qstylehints.cpp
@@ -551,7 +551,7 @@ void QStyleHints::setMouseQuickSelectionThreshold(int threshold)
if (d->m_mouseQuickSelectionThreshold == threshold)
return;
d->m_mouseQuickSelectionThreshold = threshold;
- emit mouseDoubleClickIntervalChanged(threshold);
+ emit mouseQuickSelectionThresholdChanged(threshold);
}
/*!