On 08/23/12 16:51, Sensei wrote:
>       qWarning("Contains [first]: %d", s.childGroups().contains("first")); // 
> BOOM!

You might want to switch to the stream-based operators which provide
prettier syntax and support printing of non-POD types like QString as well:

#include <QDebug>

qWarning() << "Contains [first]:" << s.childGroups().contains("first");

With kind regards,
Jan

-- 
Trojita, a fast e-mail client -- http://trojita.flaska.net/


Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to