Return the xml cache file used after Natron 2 RC2
| 761 | |
| 762 | ///Return the xml cache file used after Natron 2 RC2 |
| 763 | static QString |
| 764 | getCacheFilePath() |
| 765 | { |
| 766 | QString ofxCachePath = getOFXCacheDirPath() + QLatin1Char('/'); |
| 767 | QString ofxCacheFilePath = ofxCachePath + QString::fromUtf8("OFXCache_") + |
| 768 | QString::fromUtf8(NATRON_VERSION_STRING) + QString::fromUtf8("_") + |
| 769 | QString::fromUtf8(NATRON_DEVELOPMENT_STATUS) + QString::fromUtf8("_") + |
| 770 | QString::number(NATRON_BUILD_NUMBER) + QString::fromUtf8(".xml"); |
| 771 | |
| 772 | return ofxCacheFilePath; |
| 773 | } |
| 774 | |
| 775 | |
| 776 | static void |
no test coverage detected