summaryrefslogtreecommitdiff
path: root/src/pkl.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-01-01 21:19:51 +0100
committerCarl Hetherington <cth@carlh.net>2023-01-07 22:46:21 +0100
commit05e0890d4bb991fc321ac2e11993eba37d20e077 (patch)
treec014fb6294b5516c680832288552d86f05b1af63 /src/pkl.h
parent38bf41a1b3fc0228ea44f69b2f145a7fa2a9aabb (diff)
Cleanup: rename PKL::asset_list -> assets for consistency.
Diffstat (limited to 'src/pkl.h')
-rw-r--r--src/pkl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pkl.h b/src/pkl.h
index 8a1d07f9..daab4b26 100644
--- a/src/pkl.h
+++ b/src/pkl.h
@@ -123,12 +123,12 @@ public:
boost::optional<std::string> _original_filename;
};
- std::vector<std::shared_ptr<Asset>> asset_list () const {
- return _asset_list;
+ std::vector<std::shared_ptr<Asset>> assets() const {
+ return _assets;
}
private:
- std::vector<std::shared_ptr<Asset>> _asset_list;
+ std::vector<std::shared_ptr<Asset>> _assets;
/** The most recent disk file used to read or write this PKL */
mutable boost::optional<boost::filesystem::path> _file;
};