87 |
87 |
88 def __replyClosed(self): |
88 def __replyClosed(self): |
89 """ |
89 """ |
90 Private slot handling the closed signal of a reply. |
90 Private slot handling the closed signal of a reply. |
91 """ |
91 """ |
92 object = self.sender() |
92 reply = self.sender() |
93 if object and object in self.__replies: |
93 if reply and reply in self.__replies: |
94 self.__replies.remove(object) |
94 self.__replies.remove(reply) |
95 |
95 |
96 |
96 |
97 class QtHelpSchemeReply(QIODevice): |
97 class QtHelpSchemeReply(QIODevice): |
98 """ |
98 """ |
99 Class implementing a reply for a requested qthelp: page. |
99 Class implementing a reply for a requested qthelp: page. |