summaryrefslogtreecommitdiffstats
path: root/src/metadata/m4a/mp4isobox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/metadata/m4a/mp4isobox.cpp')
-rw-r--r--src/metadata/m4a/mp4isobox.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/metadata/m4a/mp4isobox.cpp b/src/metadata/m4a/mp4isobox.cpp
index 7f08924..6a559b8 100644
--- a/src/metadata/m4a/mp4isobox.cpp
+++ b/src/metadata/m4a/mp4isobox.cpp
@@ -28,12 +28,12 @@ class MP4::Mp4IsoBox::Mp4IsoBoxPrivate
{
public:
MP4::Fourcc fourcc;
- TagLib::uint size;
+ uint size;
long offset;
TagLib::File* file;
};
-MP4::Mp4IsoBox::Mp4IsoBox( TagLib::File* file, MP4::Fourcc fourcc, TagLib::uint size, long offset )
+MP4::Mp4IsoBox::Mp4IsoBox( TagLib::File* file, MP4::Fourcc fourcc, uint size, long offset )
{
d = new MP4::Mp4IsoBox::Mp4IsoBoxPrivate();
d->file = file;
@@ -60,7 +60,7 @@ MP4::Fourcc MP4::Mp4IsoBox::fourcc() const
return d->fourcc;
}
-TagLib::uint MP4::Mp4IsoBox::size() const
+uint MP4::Mp4IsoBox::size() const
{
return d->size;
}