PSaveFile: use a type alias instead of a macro

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad 2026-01-14 20:03:22 +00:00
parent 327a554d42
commit 8cbcadaca2
No known key found for this signature in database
GPG key ID: 5E39D70B4C93C38E

View file

@ -67,5 +67,5 @@ class PSaveFile : public QSaveFile {
QString m_absoluteFilePath;
};
#else
#define PSaveFile QSaveFile
using PSaveFile = QSaveFile;
#endif