diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-04-01 02:28:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-04-01 02:28:37 +0100 |
| commit | 623845efac0831aa1e2df6b79c4e879a7b901c69 (patch) | |
| tree | 3ce28e5e82c2aff653166c4db3f9e803883f7258 /src/lib | |
| parent | b468ccabdb13fca86ae8a324239d83490ef5832e (diff) | |
Fix XML tags.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/film.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index a6a53b3fc..f2c7a654a 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -462,10 +462,10 @@ Film::read_metadata () } } - _crop.left = f.number_child<int> ("CropLeft"); - _crop.right = f.number_child<int> ("CropRight"); - _crop.top = f.number_child<int> ("CropTop"); - _crop.bottom = f.number_child<int> ("CropBottom"); + _crop.left = f.number_child<int> ("LeftCrop"); + _crop.right = f.number_child<int> ("RightCrop"); + _crop.top = f.number_child<int> ("TopCrop"); + _crop.bottom = f.number_child<int> ("BottomCrop"); { list<shared_ptr<cxml::Node> > c = f.node_children ("Filter"); |
