View Single Post
Posts: 17 | Thanked: 4 times | Joined on Jan 2010 @ Finland
#5
Originally Posted by Dimand View Post
Ok, I have a new question.

Here is my code snipit

Code:
manager = QNetworkAccessManager(self);
		connect(manager, SIGNAL(finished("QNetworkReply*")), self, SLOT(replyFinished("QNetworkReply*")));
		manager.post(QNetworkRequest(QUrl(sms)));
I get this error:
nameerror: global name 'Qnetworkaccessmanager' is not defined

The Qnetworkaccessmanager is defiantly confusing me a bit. Any hints in the right direction?
check the Capitalizing?

'Qnetworkaccessmanager' => 'QNetworkAccessManager'

it's right here in the code but probably not in your
script, because in the nameerror only the first letter is a capital??