[Qt-creator] Problem with debug
Patric
userqt at gmail.com
Mon Jun 8 21:50:50 CEST 2009
Also this method is executed from worker thread.
----- Original Message -----
From: Patric
To: qt-creator at trolltech.com
Sent: Monday, June 08, 2009 10:42 PM
Subject: Problem with debug
Hi all,
I'm debugging my application and I hae a problem.
My debugger freezes in this position :
QString QHostAddress::toString() const
{
QT_ENSURE_PARSED(this); <<<<<<< this position
if (d->protocol == QAbstractSocket::IPv4Protocol) {
quint32 i = toIPv4Address();
QString s;
s.sprintf("%d.%d.%d.%d", (i>>24) & 0xff, (i>>16) & 0xff,
(i >> 8) & 0xff, i & 0xff);
return s;
}
My code is QString testString = agentAddress->toString();
I don't know why it's freezing there...
Anyone who can help here ?
Regards,
Patric
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.qt-project.org/pipermail/qt-creator-old/attachments/20090608/4889c121/attachment.html
More information about the Qt-creator-old
mailing list