* @brief Download resource to file. * * @param bstrURL * @param bstrFileName * @return true * @return false */
| 133 | * @return false |
| 134 | */ |
| 135 | bool WizCommonUI::URLDownloadToFile(const QString &bstrURL, const QString &bstrFileName, bool isImage) |
| 136 | { |
| 137 | return WizURLDownloadToFile(bstrURL, bstrFileName, isImage); |
| 138 | } |
| 139 | |
| 140 | |
| 141 | bool WizCommonUI::Base64ToFile(const QString &base64, const QString &fileName) |
nothing calls this directly
no test coverage detected