diff --git a/src/tiffvisitor.cpp b/src/tiffvisitor.cpp index 732189d6..c21a79f0 100644 --- a/src/tiffvisitor.cpp +++ b/src/tiffvisitor.cpp @@ -56,9 +56,9 @@ namespace Exiv2 { // TIFF Decoder table for special decoding requirements const TiffDecoderInfo TiffMetadataDecoder::tiffDecoderInfo_[] = { { "*", Tag::all, Group::ignr, 0 }, // Do not decode tags with group == Group::ignr - { "OLYMPUS", 0x0100, Group::olympmn, &TiffMetadataDecoder::decodeOlympThumb }, - { "NIKON", Tag::all, Group::sub0_0, 0 }, - { "NIKON", Tag::all, Group::sub0_1, &TiffMetadataDecoder::decodeTo } + { "OLYMPUS", 0x0100, Group::olympmn, &TiffMetadataDecoder::decodeOlympThumb }, + { "NIKON", Tag::all, Group::sub0_0, 0 }, + { "NIKON", Tag::all, Group::sub0_1, &TiffMetadataDecoder::decodeToGroup } }; bool TiffDecoderInfo::operator==(const TiffDecoderInfo::Key& key) const diff --git a/src/tiffvisitor.hpp b/src/tiffvisitor.hpp index 2766cf0c..d9846305 100644 --- a/src/tiffvisitor.hpp +++ b/src/tiffvisitor.hpp @@ -281,10 +281,10 @@ namespace Exiv2 { void decodeOlympThumb(const TiffEntryBase* object); //! Decode object to the Exif entry tag, group given as template parameters template - void decodeTo(const TiffEntryBase* object); + void decodeToTag(const TiffEntryBase* object); //! Decode object to the Exif entry with group according to the template parameter template - void decodeTo(const TiffEntryBase* object); + void decodeToGroup(const TiffEntryBase* object); //@} private: @@ -506,7 +506,7 @@ namespace Exiv2 { // template, inline and free functions template - void TiffMetadataDecoder::decodeTo(const TiffEntryBase* object) + void TiffMetadataDecoder::decodeToTag(const TiffEntryBase* object) { assert(object); // Todo: ExifKey should have an appropriate c'tor, it should not be @@ -516,7 +516,7 @@ namespace Exiv2 { } template - void TiffMetadataDecoder::decodeTo(const TiffEntryBase* object) + void TiffMetadataDecoder::decodeToGroup(const TiffEntryBase* object) { assert(object); // Todo: ExifKey should have an appropriate c'tor, it should not be