Hi again,Release 4.16.1 is a bugfix release, so new feature will make it into 4.16.1. We will take your input into account during our work on 4.17.0 which is for release this spring.Regards,Søren
HI VSimu.1I created a small program to show what happens:#include <cstdio>
#include <new>
class A
{
public:
A() : x(0) { printf("New A\n"); }
virtual ~A() { printf("Bye A\n"); }
virtual void setup(int v) { x = v; }
protected:
int x;
};
cl...
Dear VSimu.1Can you please be more specific. When I check the source code for TouchGFX I find thatclass DataGraphWrapAndClear : public AbstractDataGraphWithY : public AbstractDataGraph : public Container : public Drawable which has a virtual destruct...