summaryrefslogtreecommitdiff
path: root/src/pkl.h
diff options
context:
space:
mode:
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;
};