diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-01-01 21:19:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-01-07 22:46:21 +0100 |
| commit | 05e0890d4bb991fc321ac2e11993eba37d20e077 (patch) | |
| tree | c014fb6294b5516c680832288552d86f05b1af63 /src/pkl.h | |
| parent | 38bf41a1b3fc0228ea44f69b2f145a7fa2a9aabb (diff) | |
Cleanup: rename PKL::asset_list -> assets for consistency.
Diffstat (limited to 'src/pkl.h')
| -rw-r--r-- | src/pkl.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; }; |
