| 1115 | } |
| 1116 | |
| 1117 | void |
| 1118 | OfxHost::clearPluginsLoadedCache() |
| 1119 | { |
| 1120 | QString oldOfxCache = getOldCacheFilePath(); |
| 1121 | |
| 1122 | if ( QFile::exists(oldOfxCache) ) { |
| 1123 | QFile::remove(oldOfxCache); |
| 1124 | } |
| 1125 | #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) |
| 1126 | QtCompat::removeRecursively( getOFXCacheDirPath() ); |
| 1127 | #else |
| 1128 | QDir OFXCacheDir( getOFXCacheDirPath() ); |
| 1129 | OFXCacheDir.removeRecursively(); |
| 1130 | #endif |
| 1131 | } |
| 1132 | |
| 1133 | void |
| 1134 | OfxHost::loadingStatus(bool loading, |
no test coverage detected