32 |
32 |
33 def __fireSignals(self): |
33 def __fireSignals(self): |
34 """ |
34 """ |
35 Private method to send some signals to end the connection. |
35 Private method to send some signals to end the connection. |
36 """ |
36 """ |
37 self.emit(SIGNAL("error(QNetworkReply::NetworkError)"), |
37 self.error[QNetworkReply::NetworkError].emit(QNetworkReply.ContentAccessDenied) |
38 QNetworkReply.ContentAccessDenied) |
38 self.finished.emit() |
39 self.emit(SIGNAL("finished()")) |
|
40 |
39 |
41 def readData(self, maxlen): |
40 def readData(self, maxlen): |
42 """ |
41 """ |
43 Protected method to retrieve data from the reply object. |
42 Protected method to retrieve data from the reply object. |
44 |
43 |