Quote Originally Posted by katrina
const QString &signature = new QString("Katrina");
Wow, two errors on one line! "new QString" returns QString* and not QString and you can't assign a newly created object to a reference -- a reference is just a "handler" for already existing objects. But besides that -- nice