Fix TagParser namespace in documentation

This commit is contained in:
Martchus 2018-06-03 20:39:00 +02:00
parent 52d5c5598d
commit 53970fbf74
3 changed files with 11 additions and 11 deletions

View File

@ -34,7 +34,7 @@ namespace Cli {
namespace Json {
/*!
* \brief Converts the specified Media::TagValue to an object suitable for JSON serialization.
* \brief Converts the specified TagParser::TagValue to an object suitable for JSON serialization.
*/
TagValue::TagValue(const TagParser::TagValue &tagValue, RAPIDJSON_NAMESPACE::Document::AllocatorType &allocator)
: mimeType(tagValue.mimeType())
@ -96,8 +96,8 @@ TagValue::TagValue(const TagParser::TagValue &tagValue, RAPIDJSON_NAMESPACE::Doc
}
/*!
* \brief Copies a Media::TagTarget for serialization.
* \remarks Due to the lack of getter/setter support in Reflective RapidJSON we can't use Media::TagTarget directly.
* \brief Copies a TagParser::TagTarget for serialization.
* \remarks Due to the lack of getter/setter support in Reflective RapidJSON we can't use TagParser::TagTarget directly.
*/
TargetInfo::TargetInfo(const TagTarget &tagTarget, RAPIDJSON_NAMESPACE::Document::AllocatorType &allocator)
: level(tagTarget.level())
@ -111,7 +111,7 @@ TargetInfo::TargetInfo(const TagTarget &tagTarget, RAPIDJSON_NAMESPACE::Document
}
/*!
* \brief Copies relevant information from Media::Tag for serialization (especially the fields).
* \brief Copies relevant information from TagParser::Tag for serialization (especially the fields).
*/
TagInfo::TagInfo(const Tag &tag, RAPIDJSON_NAMESPACE::Document::AllocatorType &allocator)
: format(tag.typeName())
@ -132,7 +132,7 @@ TagInfo::TagInfo(const Tag &tag, RAPIDJSON_NAMESPACE::Document::AllocatorType &a
}
/*!
* \brief Copies relevant information from Media::MediaFileInfo for serialization.
* \brief Copies relevant information from TagParser::MediaFileInfo for serialization.
* \remarks The \a mediaFileInfo must have been parsed before.
*/
FileInfo::FileInfo(const TagParser::MediaFileInfo &mediaFileInfo, RAPIDJSON_NAMESPACE::Document::AllocatorType &allocator)

View File

@ -170,10 +170,10 @@ template <class ElementType, bool isAdditional = false> void addElementNode(cons
/*!
* \class FileInfoModel
* \brief The FileInfoModel displays overall information from a Media::MediaFileInfo instance.
* \brief The FileInfoModel displays overall information from a TagParser::MediaFileInfo instance.
*
* The model assumes that the specified Media::MediaFileInfo instance has been parsed already.
* The model is not updated automatically when the state of the Media::MediaFileInfo changes.
* The model assumes that the specified TagParser::MediaFileInfo instance has been parsed already.
* The model is not updated automatically when the state of the TagParser::MediaFileInfo changes.
* To update the model, just call setFileInfo() again.
*/
@ -207,7 +207,7 @@ QVariant FileInfoModel::headerData(int section, Qt::Orientation orientation, int
}
/*!
* \brief Returns the currently assigned Media::MediaFileInfo.
* \brief Returns the currently assigned TagParser::MediaFileInfo.
*/
const MediaFileInfo *FileInfoModel::fileInfo() const
{
@ -215,7 +215,7 @@ const MediaFileInfo *FileInfoModel::fileInfo() const
}
/*!
* \brief Assigns a Media::MediaFileInfo.
* \brief Assigns a TagParser::MediaFileInfo.
* \remarks Causes updating the internal cache and resets the model.
*/
void FileInfoModel::setFileInfo(MediaFileInfo &fileInfo, Diagnostics &diag, Diagnostics *diagReparsing)

View File

@ -22,7 +22,7 @@ namespace QtGui {
/*!
* \class QtGui::TagEdit
* \brief The TagEdit widget allows the user to edit Media::Tag objects.
* \brief The TagEdit widget allows the user to edit TagParser::Tag objects.
*/
/*!