Hi,

Quote Originally Posted by N3wb View Post
But that gave the error:
error: conversion from `QPoint*' to non-scalar type `QPoint' requested
The compiler message means that your are trying to affect a pointer to a QPoint (a QPoint*), to a QPoint. It is C++ basic features.

If you take time to decode (it is true it is not so clear as Java) messages, you'll find out what's happening