(self)
| 113 | Log.Error(es) |
| 114 | |
| 115 | def SendComment(self): |
| 116 | data = self.commentLine.text() |
| 117 | if not data: |
| 118 | return |
| 119 | self.commentLine.setText("") |
| 120 | QtOwner().ShowLoading() |
| 121 | self.AddHttpTask(req.SendCommentReq2(self.bookId, data, self.cid), callBack=self.SendCommentBack) |
| 122 | |
| 123 | def SendCommentBack(self, raw): |
| 124 | try: |
nothing calls this directly
no test coverage detected