Hi, anyone could me explain why the first get a runtime error and second is ok? thanks
Qt Code:
  1. QString* textLabel;
  2. //*textLabel = s; //runtime error
  3. textLabel = &s; //OK
To copy to clipboard, switch view to plain text mode