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/
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Interest mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/interest
