summaryrefslogtreecommitdiffstats
path: root/src/Key.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Key.cpp')
-rw-r--r--src/Key.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Key.cpp b/src/Key.cpp
index 4145f05..e3ccbe6 100644
--- a/src/Key.cpp
+++ b/src/Key.cpp
@@ -32,7 +32,7 @@ Key::Key(plist_t node, Node* parent) : Node(node, parent)
32{ 32{
33} 33}
34 34
35Key::Key(PList::Key& k) : Node(PLIST_UINT) 35Key::Key(const PList::Key& k) : Node(PLIST_UINT)
36{ 36{
37 plist_set_key_val(_node, k.GetValue().c_str()); 37 plist_set_key_val(_node, k.GetValue().c_str());
38} 38}
@@ -53,7 +53,7 @@ Key::~Key()
53{ 53{
54} 54}
55 55
56Node* Key::Clone() 56Node* Key::Clone() const
57{ 57{
58 return new Key(*this); 58 return new Key(*this);
59} 59}
@@ -63,7 +63,7 @@ void Key::SetValue(const std::string& s)
63 plist_set_key_val(_node, s.c_str()); 63 plist_set_key_val(_node, s.c_str());
64} 64}
65 65
66std::string Key::GetValue() 66std::string Key::GetValue() const
67{ 67{
68 char* s = NULL; 68 char* s = NULL;
69 plist_get_key_val(_node, &s); 69 plist_get_key_val(_node, &s);