Hi, the following code QString text; QStringList list; list.append(text.left(1)); gives me "warning: Use QString::at(0) instead of QString::left(1) to avoid temporary allocations". But append() needs a QString so there is no way to avoid the temporary. I'm using clazy 1.5. Cheers, André