Skip to content

Commit

Permalink
Fix TagParser namespace in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Martchus committed Jun 3, 2018
1 parent 52d5c55 commit 53970fb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions cli/json.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down Expand Up @@ -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())
Expand All @@ -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())
Expand All @@ -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)
Expand Down
10 changes: 5 additions & 5 deletions gui/fileinfomodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/

Expand Down Expand Up @@ -207,15 +207,15 @@ 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
{
return m_file;
}

/*!
* \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)
Expand Down
2 changes: 1 addition & 1 deletion gui/tagedit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/

/*!
Expand Down

0 comments on commit 53970fb

Please sign in to comment.