From e19fca6640cf7b0fecf1f165189f0df214c2d32a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Kov=C3=A1=C5=99?= Date: Tue, 26 Jan 2021 16:00:00 +0100 Subject: [PATCH] Small corrections --- include/exiv2/bmffimage.hpp | 2 +- src/bmffimage.cpp | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/exiv2/bmffimage.hpp b/include/exiv2/bmffimage.hpp index 7001f54a..24144b34 100644 --- a/include/exiv2/bmffimage.hpp +++ b/include/exiv2/bmffimage.hpp @@ -48,7 +48,7 @@ namespace Exiv2 //! @name Creators //@{ /*! - @brief Constructor to open a ISOBMFF image. Since the + @brief Constructor to open a ISO/IEC BMFF image. Since the constructor can not return a result, callers should check the good() method after object construction to determine success or failure. diff --git a/src/bmffimage.cpp b/src/bmffimage.cpp index f9f9c872..e6b12578 100644 --- a/src/bmffimage.cpp +++ b/src/bmffimage.cpp @@ -49,11 +49,11 @@ namespace Exiv2 EXIV2API bool enableISOBMFF(bool enable) { -#ifdef EXV_ENABLE_ISOBMFF +#ifdef EXV_ENABLE_ISOBMFF enabled = enable; return true; -#endif//EXV_ENABLE_ISOBMFF - enable=false;// unused +#endif // EXV_ENABLE_ISOBMFF + enable = false; // unused return enable; } @@ -85,11 +85,11 @@ namespace Exiv2 { // Todo: implement me! throw(Error(kerInvalidSettingForImage, "Image comment", "ISO BMFF")); - } // ISOBMFF::setComment + } // BmffImage::setComment void BmffImage::readMetadata() { - } // ISOBMFF::readMetadata + } // BmffImage::readMetadata void BmffImage::printStructure(std::ostream& out, PrintStructureOption option, int depth) { @@ -105,7 +105,7 @@ namespace Exiv2 UNUSED(out); UNUSED(option); UNUSED(depth); - } // ISOBMFF::printStructure + } // BmffImage::printStructure void BmffImage::writeMetadata() {