View Single Post
Posts: 330 | Thanked: 97 times | Joined on Dec 2010 @ saudi arabia
#91
Originally Posted by Helmuth View Post
Thats not true. I would do it.
But he have to pay the time I need for the implementation.
I am helping too, am giving hintsabout the codding, i know it might be wrong but I read about it alot, and bought a book about qt for nokia

and i found this.
Code:
WorkerThread::WorkerThread(QObject* owner,
QuakeListModel& eventModel)
: QThread(owner)
, mCancelled(false)
, mNetManager(0)
, mReply(0)
, mEventModel(eventModel)
{
// Initialize the hashtable of tags we seek
mXmlTags.append("id");
mXmlTags.append("title");
mXmlTags.append("updated");
mXmlTags.append("summary");
mXmlTags.append("point");
mXmlTags.append("elev");
mXmlTags.append("link");
mNetManager = new QNetworkAccessManager(this);
connect(mNetManager, SIGNAL(finished(QNetworkReply*)),
this, SLOT(handleNetFinished(QNetworkReply*)));
}