diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-27 14:41:33 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-27 14:41:33 +0000 |
| commit | 8c2f3517e868078b551bb01d975f2956cb692fbf (patch) | |
| tree | 81bf98f00b9a267a73494c1939c6e9473559c85e /src/font.cc | |
| parent | e5d368553b47a566a83d4edce0a8f166db9509e6 (diff) | |
Various tinkerings.
Diffstat (limited to 'src/font.cc')
| -rw-r--r-- | src/font.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/font.cc b/src/font.cc index 5a568a63..52996a73 100644 --- a/src/font.cc +++ b/src/font.cc @@ -28,7 +28,7 @@ using boost::shared_ptr; using boost::optional; using namespace dcp; -Font::Font (shared_ptr<const cxml::Node> node) +Font::Font (boost::shared_ptr<const cxml::Node> node) { text = node->content (); @@ -52,7 +52,7 @@ Font::Font (shared_ptr<const cxml::Node> node) text_nodes = type_children<Text> (node, "Text"); } -Font::Font (list<shared_ptr<Font> > const & font_nodes) +Font::Font (std::list<boost::shared_ptr<Font> > const & font_nodes) : size (0) , italic (false) , color ("FFFFFFFF") |
