diff options
Diffstat (limited to 'src/quick/handlers')
-rw-r--r-- | src/quick/handlers/qquickdragaxis.cpp | 2 | ||||
-rw-r--r-- | src/quick/handlers/qquickdraghandler.cpp | 2 | ||||
-rw-r--r-- | src/quick/handlers/qquickhoverhandler.cpp | 2 | ||||
-rw-r--r-- | src/quick/handlers/qquicktaphandler.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/quick/handlers/qquickdragaxis.cpp b/src/quick/handlers/qquickdragaxis.cpp index 84b1b7ee07..7d8203eb06 100644 --- a/src/quick/handlers/qquickdragaxis.cpp +++ b/src/quick/handlers/qquickdragaxis.cpp @@ -7,7 +7,7 @@ QT_BEGIN_NAMESPACE -Q_LOGGING_CATEGORY(lcDragAxis, "qt.quick.pointer.dragaxis") +Q_STATIC_LOGGING_CATEGORY(lcDragAxis, "qt.quick.pointer.dragaxis") QQuickDragAxis::QQuickDragAxis(QQuickPointerHandler *handler, const QString &propertyName, qreal initValue) : QObject(handler), m_accumulatedValue(initValue), m_propertyName(propertyName) diff --git a/src/quick/handlers/qquickdraghandler.cpp b/src/quick/handlers/qquickdraghandler.cpp index 930f00d2f3..3d5f26b43a 100644 --- a/src/quick/handlers/qquickdraghandler.cpp +++ b/src/quick/handlers/qquickdraghandler.cpp @@ -10,7 +10,7 @@ QT_BEGIN_NAMESPACE static const qreal DragAngleToleranceDegrees = 10; -Q_LOGGING_CATEGORY(lcDragHandler, "qt.quick.handler.drag") +Q_STATIC_LOGGING_CATEGORY(lcDragHandler, "qt.quick.handler.drag") /*! \qmltype DragHandler diff --git a/src/quick/handlers/qquickhoverhandler.cpp b/src/quick/handlers/qquickhoverhandler.cpp index 5bf53235c5..863275c087 100644 --- a/src/quick/handlers/qquickhoverhandler.cpp +++ b/src/quick/handlers/qquickhoverhandler.cpp @@ -8,7 +8,7 @@ QT_BEGIN_NAMESPACE -Q_LOGGING_CATEGORY(lcHoverHandler, "qt.quick.handler.hover") +Q_STATIC_LOGGING_CATEGORY(lcHoverHandler, "qt.quick.handler.hover") /*! \qmltype HoverHandler diff --git a/src/quick/handlers/qquicktaphandler.cpp b/src/quick/handlers/qquicktaphandler.cpp index 651a8ce9a9..76f89feb3a 100644 --- a/src/quick/handlers/qquicktaphandler.cpp +++ b/src/quick/handlers/qquicktaphandler.cpp @@ -11,7 +11,7 @@ QT_BEGIN_NAMESPACE -Q_LOGGING_CATEGORY(lcTapHandler, "qt.quick.handler.tap") +Q_STATIC_LOGGING_CATEGORY(lcTapHandler, "qt.quick.handler.tap") quint64 QQuickTapHandler::m_multiTapInterval(0); // single tap distance is the same as the drag threshold |