aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates2/qquickabstractbutton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quicktemplates2/qquickabstractbutton.cpp')
-rw-r--r--src/quicktemplates2/qquickabstractbutton.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/quicktemplates2/qquickabstractbutton.cpp b/src/quicktemplates2/qquickabstractbutton.cpp
index 0a8b8ddf..47ed0fff 100644
--- a/src/quicktemplates2/qquickabstractbutton.cpp
+++ b/src/quicktemplates2/qquickabstractbutton.cpp
@@ -51,10 +51,6 @@
QT_BEGIN_NAMESPACE
-// copied from qabstractbutton.cpp
-static const int AUTO_REPEAT_DELAY = 300;
-static const int AUTO_REPEAT_INTERVAL = 100;
-
/*!
\qmltype AbstractButton
\inherits Control
@@ -117,33 +113,6 @@ static const int AUTO_REPEAT_INTERVAL = 100;
This signal is emitted when the button is interactively double clicked by the user via touch or mouse.
*/
-QQuickAbstractButtonPrivate::QQuickAbstractButtonPrivate()
- : explicitText(false),
- down(false),
- explicitDown(false),
- pressed(false),
- keepPressed(false),
- checked(false),
- checkable(false),
- autoExclusive(false),
- autoRepeat(false),
- wasHeld(false),
- holdTimer(0),
- delayTimer(0),
- repeatTimer(0),
- repeatDelay(AUTO_REPEAT_DELAY),
- repeatInterval(AUTO_REPEAT_INTERVAL),
-#if QT_CONFIG(shortcut)
- shortcutId(0),
-#endif
- pressButtons(Qt::NoButton),
- indicator(nullptr),
- group(nullptr),
- display(QQuickAbstractButton::TextBesideIcon),
- action(nullptr)
-{
-}
-
void QQuickAbstractButtonPrivate::setPressPoint(const QPointF &point)
{
pressPoint = point;