In one of my class,there's a member QPixmap object:
Qt Code:
  1. MyClass
  2. {
  3. ...
  4. private:
  5. QPixmap myPixmap;
  6. }
To copy to clipboard, switch view to plain text mode 
I will load a picture into it.And after a period,I want to unload the data (nullify it),make it just like uninitiated.How can I do this?