diff options
| author | Nicholas Estelami <NEstelami@users.noreply.github.com> | 2023-04-30 20:49:43 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-30 20:49:43 -0400 |
| commit | 35d6c0c852722b0edb063cb9a8ad74de22bd2524 (patch) | |
| tree | 7789c73478f444c1ed3b22bc8a6b101a6221ef87 | |
| parent | 6f999c77f147f2301ad648b5339db17d03847a37 (diff) | |
Added alias for ZPath called "PathList" (#280)
| -rw-r--r-- | ZAPD/ZPath.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ZAPD/ZPath.cpp b/ZAPD/ZPath.cpp index 0dac87a..5dae65a 100644 --- a/ZAPD/ZPath.cpp +++ b/ZAPD/ZPath.cpp @@ -6,7 +6,8 @@ #include "WarningHandler.h" #include "ZFile.h" -REGISTER_ZFILENODE(Path, ZPath); +REGISTER_ZFILENODE(Path, ZPath); // Old name that is being kept for backwards compatability +REGISTER_ZFILENODE(PathList, ZPath); // New name that may be used in future XMLs ZPath::ZPath(ZFile* nParent) : ZResource(nParent) { |
