Hello everyone.
May be this is a bug.
While configuring and compiling Qt with QT_NO_TABLET, QT_NO_TABLETEVENT, i get error about QTabletDeviceData undefined.
in qapplication_p.h
found a guarded section with QTabletDeviceData defenition
#ifndef QT_NO_TABLET
struct QTabletDeviceData
{
#ifndef QT_NO_TABLET
struct QTabletDeviceData
{
To copy to clipboard, switch view to plain text mode
however in qapplication_win.cpp
there is an unguarded section containing:
typedef QHash<quint64, QTabletDeviceData> QTabletCursorInfo;
Q_GLOBAL_STATIC(QTabletCursorInfo, tCursorInfo)
QTabletDeviceData currentTabletPointer;
typedef QHash<quint64, QTabletDeviceData> QTabletCursorInfo;
Q_GLOBAL_STATIC(QTabletCursorInfo, tCursorInfo)
QTabletDeviceData currentTabletPointer;
To copy to clipboard, switch view to plain text mode
Anyone can explain this?
Bookmarks