summaryrefslogtreecommitdiff
path: root/src/dcp.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-01-01 21:27:16 +0100
committerCarl Hetherington <cth@carlh.net>2023-01-07 22:46:32 +0100
commitcb574824a2e5d280b421e8c4e81fa90b85b877ae (patch)
tree15e91a4e95d18ad506e6ef5f591633581170ecf0 /src/dcp.h
parent05e0890d4bb991fc321ac2e11993eba37d20e077 (diff)
Cleanup: rename AssetMap::path -> file for consistency.
Diffstat (limited to 'src/dcp.h')
-rw-r--r--src/dcp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dcp.h b/src/dcp.h
index 941df67c..7d3d670a 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -182,12 +182,12 @@ public:
return _pkls;
}
- boost::optional<boost::filesystem::path> asset_map_path() const {
+ boost::optional<boost::filesystem::path> asset_map_file() const {
if (!_asset_map) {
return {};
}
- return _asset_map->path();
+ return _asset_map->file();
}
boost::optional<AssetMap> asset_map() const {