Hi,
i programming in qt already sometime and allway i am worried about memory leaks. So this is my question:
In classic Qt programming i used to use something like:
Qt Code:
  1. MyObject *object = new MyObject(this);
To copy to clipboard, switch view to plain text mode 
. Is this correct? Will object be delete automatic or i created memory leak?

Thanks