| 493 | } |
| 494 | |
| 495 | void RSSPhotoFrameSource::onTransferError(const FileTransfer& transfer) |
| 496 | { |
| 497 | // mark it down, but just skip the handling |
| 498 | consoleWrite(QString("Could not load PhotoFrame URL: %1\n").arg(transfer.getUrl())); |
| 499 | |
| 500 | bool * isImageNotSource = (bool *) transfer.getUserData(); |
| 501 | if (isImageNotSource) |
| 502 | delete isImageNotSource; |
| 503 | } |
nothing calls this directly
no test coverage detected