Skip to content
Snippets Groups Projects
Commit 64a6e8ed authored by Thiago Macieira's avatar Thiago Macieira Committed by Jørgen Lind
Browse files

Fix build: update to QPA API


wltouch.cpp:146:63: error: conversion from ‘QVector<QPointF>’ to non-scalar type ‘QList<QPointF>’ requested

Change-Id: Ibcf6c547fa1eeee2ccd568f60c10146ab104ce81
Reviewed-by: default avatarJørgen Lind <jorgen.lind@nokia.com>
parent b8d9de88
Branches caf_migration/github/5.7
No related tags found
No related merge requests found
......@@ -143,7 +143,7 @@ void TouchExtensionGlobal::postTouchEvent(QTouchEvent *event, Surface *surface)
uint32_t pressure = uint32_t(tp.pressure() * 255);
wl_array *rawData = 0;
QList<QPointF> rawPosList = tp.rawScreenPositions();
QVector<QPointF> rawPosList = tp.rawScreenPositions();
int rawPosCount = rawPosList.count();
if (rawPosCount) {
rawPosCount = qMin(maxRawPos, rawPosCount);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment