diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-24 15:05:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-24 15:05:19 +0100 |
| commit | 81312913ad26aaee12eeabd3f27a537806c97049 (patch) | |
| tree | 8a58899a4df44bc88f85d52707152934cc0ccb51 /src/font_asset.cc | |
| parent | 094117316524f12fc82adbdf721778eed04e66f6 (diff) | |
Fix various SNAFUs with Font ID handling.
Diffstat (limited to 'src/font_asset.cc')
| -rw-r--r-- | src/font_asset.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/font_asset.cc b/src/font_asset.cc index 8f8e4ff3..2cd03f27 100644 --- a/src/font_asset.cc +++ b/src/font_asset.cc @@ -27,8 +27,8 @@ using std::string; using namespace dcp; -FontAsset::FontAsset (boost::filesystem::path file) - : Asset (file) +FontAsset::FontAsset (string id, boost::filesystem::path file) + : Asset (id, file) { } |
