diff options
| author | 2014-08-15 21:59:01 -0400 | |
|---|---|---|
| committer | 2014-09-20 00:10:46 +0200 | |
| commit | ccd6f05fe1e6cd5a1611b0df78974fa39869013d (patch) | |
| tree | 3c9e2c431d85cfb683de1724b121819aa16d29aa /src/Array.cpp | |
| parent | bc147d80b5a608b8a0478041e5198093ecd767b8 (diff) | |
| download | libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.gz libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.bz2 | |
Change Clone() to be const, which required constructors with const references and a const GetValue().
Diffstat (limited to 'src/Array.cpp')
| -rw-r--r-- | src/Array.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Array.cpp b/src/Array.cpp index a4ea02a..3036476 100644 --- a/src/Array.cpp +++ b/src/Array.cpp | |||
| @@ -43,7 +43,7 @@ Array::Array(plist_t node, Node* parent) : Structure(parent) | |||
| 43 | } | 43 | } |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | Array::Array(PList::Array& a) : Structure() | 46 | Array::Array(const PList::Array& a) : Structure() |
| 47 | { | 47 | { |
| 48 | _array.clear(); | 48 | _array.clear(); |
| 49 | _node = plist_copy(a.GetPlist()); | 49 | _node = plist_copy(a.GetPlist()); |
| @@ -85,7 +85,7 @@ Array::~Array() | |||
| 85 | _array.clear(); | 85 | _array.clear(); |
| 86 | } | 86 | } |
| 87 | 87 | ||
| 88 | Node* Array::Clone() | 88 | Node* Array::Clone() const |
| 89 | { | 89 | { |
| 90 | return new Array(*this); | 90 | return new Array(*this); |
| 91 | } | 91 | } |
