Change usage of DECLARE_ENUM macro

This commit is contained in:
Martchus 2016-07-11 21:33:19 +02:00
parent 58411bc8c5
commit dce5a98b8a
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ class AbstractTrack;
class VorbisComment; class VorbisComment;
enum class MediaType; enum class MediaType;
DECLARE_ENUM(TagType, unsigned int); DECLARE_ENUM_CLASS(TagType, unsigned int);
/*! /*!
* \brief The TagUsage enum specifies the usage of a certain tag type. * \brief The TagUsage enum specifies the usage of a certain tag type.

View File

@ -8,7 +8,7 @@
namespace Media { namespace Media {
DECLARE_ENUM(TagTargetLevel, byte); DECLARE_ENUM_CLASS(TagTargetLevel, byte);
/*! /*!
* \brief Specifies the container format. * \brief Specifies the container format.