[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:37:45 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=66e78f6

The following commit has been merged in the master branch:
commit 66e78f694d9ce5b06c9911fcbf6611bd8adf0520
Author: Andreas Huggel <ahuggel at gmx.net>
Date:   Wed Jun 21 09:33:03 2006 +0000

    Fixed copy c'tor properly
---
 src/datasets.cpp | 2 +-
 src/tags.cpp     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/datasets.cpp b/src/datasets.cpp
index 5528e10..8817e8b 100644
--- a/src/datasets.cpp
+++ b/src/datasets.cpp
@@ -315,7 +315,7 @@ namespace Exiv2 {
     }
 
     IptcKey::IptcKey(const IptcKey& rhs)
-        : Key(), tag_(rhs.tag_), record_(rhs.record_), key_(rhs.key_)
+        : Key(rhs), tag_(rhs.tag_), record_(rhs.record_), key_(rhs.key_)
     {
     }
 
diff --git a/src/tags.cpp b/src/tags.cpp
index c254528..752ad31 100644
--- a/src/tags.cpp
+++ b/src/tags.cpp
@@ -852,7 +852,7 @@ namespace Exiv2 {
     }
 
     ExifKey::ExifKey(const ExifKey& rhs)
-        : Key(), tag_(rhs.tag_), ifdId_(rhs.ifdId_), ifdItem_(rhs.ifdItem_),
+        : Key(rhs), tag_(rhs.tag_), ifdId_(rhs.ifdId_), ifdItem_(rhs.ifdItem_),
           idx_(rhs.idx_), key_(rhs.key_)
     {
     }

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list