| 25 | } |
| 26 | |
| 27 | void ReplyList::add(QNetworkReply *reply, int timeOut) { |
| 28 | if (reply && ignoreSslErrors()) { |
| 29 | reply->ignoreSslErrors(); |
| 30 | } |
| 31 | add(new Reply(reply, timeOut)); |
| 32 | } |
| 33 | |
| 34 | void ReplyList::add(Reply *reply) { |
| 35 | replies_.append(reply); |
no test coverage detected