Quote Originally Posted by twoten View Post
Can you give me an example of the correct way to do this?
Instead of
Qt Code:
  1. QTimer *timer = new QTimer(this);
To copy to clipboard, switch view to plain text mode 
you write
Qt Code:
  1. timer = new QTimer(this);
To copy to clipboard, switch view to plain text mode 

Cheers,
_