Fix duplicate symbol lcTextInput build failure on static builds
Fixes: QTBUG-105682 Pick-to: 6.4 Change-Id: I8c367403b64b5a976726fff210317b4212ea8695 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
This commit is contained in:
parent
1d01bf9f9e
commit
513f6caab8
|
@ -31,7 +31,7 @@
|
|||
QT_BEGIN_NAMESPACE
|
||||
|
||||
DEFINE_BOOL_CONFIG_OPTION(qmlDisableDistanceField, QML_DISABLE_DISTANCEFIELD)
|
||||
Q_LOGGING_CATEGORY(lcTextInput, "qt.quick.textInput")
|
||||
Q_LOGGING_CATEGORY(lcQuickTextInput, "qt.quick.textInput")
|
||||
|
||||
/*!
|
||||
\qmltype TextInput
|
||||
|
@ -4872,7 +4872,7 @@ void QQuickTextInput::setOldSelectionDefault()
|
|||
Q_D(QQuickTextInput);
|
||||
d->selectByMouse = false;
|
||||
d->selectByTouchDrag = true;
|
||||
qCDebug(lcTextInput, "pre-6.4 behavior chosen by import version: selectByMouse defaults false; if enabled, touchscreen acts like a mouse");
|
||||
qCDebug(lcQuickTextInput, "pre-6.4 behavior chosen by import version: selectByMouse defaults false; if enabled, touchscreen acts like a mouse");
|
||||
}
|
||||
|
||||
// TODO in 6.7.0: remove the note about versions prior to 6.4 in selectByMouse() documentation
|
||||
|
|
Loading…
Reference in New Issue