Hi!
I'm parsing integers from a QTextStream:

textstream >> x >> y ;

How can I check everything for correctness?

Qt Code:
  1. if( ! (textstream >> x >> y))
  2. {
  3. //...
  4. }
To copy to clipboard, switch view to plain text mode 
does not work.

Thanks in Advance
Olli