From 6ba5a963454ba0d47443aaf283dca85fbf6da0f2 Mon Sep 17 00:00:00 2001 From: Jakub Pruzinec Date: Sat, 16 Mar 2019 13:02:12 +0100 Subject: [PATCH] doxygen --- src/fileformat/types/resource_table/resource_table.cpp | 10 +++++----- src/fileformat/utils/other.cpp | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/fileformat/types/resource_table/resource_table.cpp b/src/fileformat/types/resource_table/resource_table.cpp index 00c306aa02..5428bedce4 100644 --- a/src/fileformat/types/resource_table/resource_table.cpp +++ b/src/fileformat/types/resource_table/resource_table.cpp @@ -456,7 +456,7 @@ void ResourceTable::parseVersionInfoResources() /** * Parse version information * @param bytes Resource bytes - * @raturn @c true if parsing was successful, @c false otherwise + * @return @c true if parsing was successful, @c false otherwise */ bool ResourceTable::parseVersionInfo(const std::vector &bytes) { @@ -532,7 +532,7 @@ bool ResourceTable::parseVersionInfo(const std::vector &bytes) * Parse Version Info child * @param bytes Resource bytes * @param offset Offset to Version Info Child structure - * @raturn @c true if parsing was successful, @c false otherwise + * @return @c true if parsing was successful, @c false otherwise */ bool ResourceTable::parseVersionInfoChild(const std::vector &bytes, std::size_t &offset) { @@ -589,7 +589,7 @@ bool ResourceTable::parseVersionInfoChild(const std::vector &bytes * Parse VarFileInfo structure * @param bytes Resource bytes * @param offset Offset to structure - * @raturn @c true if parsing was successful, @c false otherwise + * @return @c true if parsing was successful, @c false otherwise */ bool ResourceTable::parseVarFileInfoChild(const std::vector &bytes, std::size_t &offset) { @@ -633,7 +633,7 @@ bool ResourceTable::parseVarFileInfoChild(const std::vector &bytes * Parse StringFileInfo child * @param bytes Resource bytes * @param offset Offset to structure - * @raturn @c true if parsing was successful, @c false otherwise + * @return @c true if parsing was successful, @c false otherwise */ bool ResourceTable::parseStringFileInfoChild(const std::vector &bytes, std::size_t &offset) { @@ -675,7 +675,7 @@ bool ResourceTable::parseStringFileInfoChild(const std::vector &by * Parse var string * @param bytes Resource bytes * @param offset Offset to structure - * @raturn @c true if parsing was successful, @c false otherwise + * @return @c true if parsing was successful, @c false otherwise */ bool ResourceTable::parseVarString(const std::vector &bytes, std::size_t &offset) { diff --git a/src/fileformat/utils/other.cpp b/src/fileformat/utils/other.cpp index 6f381a9fca..537713f4b9 100644 --- a/src/fileformat/utils/other.cpp +++ b/src/fileformat/utils/other.cpp @@ -465,7 +465,7 @@ std::string lcidToStr(std::size_t lcid) /** * Get string representation of IBM code page - * @param code page Language code id + * @param cpage Language code id * @return String representation of @a code page */ std::string codePageToStr(std::size_t cpage)