summaryrefslogtreecommitdiff
path: root/src/lib/font.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-09 16:18:00 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-09 16:18:00 +0100
commit2a01820de9229fd778787421ec4f7bbf1e4b8bf1 (patch)
tree9243a62fb21cea583f6b012fcc0ec1088ae19c84 /src/lib/font.cc
parentea3e9db20ede512d5e5d73b41c4cb796eeef56d3 (diff)
Hide Font members behind accessors.
Diffstat (limited to 'src/lib/font.cc')
-rw-r--r--src/lib/font.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/font.cc b/src/lib/font.cc
index 5cf30a2aa..0e1ad85cd 100644
--- a/src/lib/font.cc
+++ b/src/lib/font.cc
@@ -21,8 +21,8 @@
#include <libxml++/libxml++.h>
Font::Font (cxml::NodePtr node)
- : id (node->string_child ("Id"))
- , file (node->optional_string_child ("File"))
+ : _id (node->string_child ("Id"))
+ , _file (node->optional_string_child ("File"))
{
}
@@ -30,14 +30,14 @@ Font::Font (cxml::NodePtr node)
void
Font::as_xml (xmlpp::Node* node)
{
- node->add_child("Id")->add_child_text (id);
- if (file) {
- node->add_child("File")->add_child_text (file.get().string ());
+ node->add_child("Id")->add_child_text (_id);
+ if (_file) {
+ node->add_child("File")->add_child_text (_file.get().string ());
}
}
bool
operator!= (Font const & a, Font const & b)
{
- return (a.id != b.id || a.file != b.file);
+ return (a.id() != b.id() || a.file() != b.file());
}