| 50 | PSaveFile(const QString& name) : QSaveFile(name) { addPath(name); } |
| 51 | PSaveFile(const QString& name, QObject* parent) : QSaveFile(name, parent) { addPath(name); } |
| 52 | virtual ~PSaveFile() |
| 53 | { |
| 54 | if (auto app = APPLICATION_DYN) { |
| 55 | app->removeQSavePath(m_absoluteFilePath); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | private: |
| 60 | void addPath(const QString& path) |
nothing calls this directly
no test coverage detected