Hi.
Can someone shed a a bit og light on the differences between the following
Qt Code:
  1. QVector <int*> *rect;
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. QVector <int> *rect;
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. QVector <int*> rect;
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. QVector <int> rect;
To copy to clipboard, switch view to plain text mode