From 92289b8df955dd39e8e2b93c0005b19434926e9c Mon Sep 17 00:00:00 2001 From: Scott Wheeler Date: Sat, 10 Apr 2004 15:36:17 +0000 Subject: [PATCH] Return a XiphComment here -- that still satisfies the overload of TagLib::File::tag() since return types aren't mangled into the symbol names. git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@302627 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ogg/flac/oggflacfile.cpp | 4 ++-- ogg/flac/oggflacfile.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ogg/flac/oggflacfile.cpp b/ogg/flac/oggflacfile.cpp index f2f9212d..fe7b0d05 100644 --- a/ogg/flac/oggflacfile.cpp +++ b/ogg/flac/oggflacfile.cpp @@ -76,12 +76,12 @@ Ogg::FLAC::File::~File() delete d; } -TagLib::Tag* Ogg::FLAC::File::tag() const +Ogg::XiphComment *Ogg::FLAC::File::tag() const { return d->comment; } -Properties* Ogg::FLAC::File::audioProperties() const +Properties *Ogg::FLAC::File::audioProperties() const { return d->properties; } diff --git a/ogg/flac/oggflacfile.h b/ogg/flac/oggflacfile.h index db00dc0b..61138435 100644 --- a/ogg/flac/oggflacfile.h +++ b/ogg/flac/oggflacfile.h @@ -73,7 +73,7 @@ namespace TagLib { /*! * Returns the Tag for this file. This will always be a XiphComment. */ - virtual TagLib::Tag *tag() const; + virtual XiphComment *tag() const; /*! * Returns the FLAC::Properties for this file. If no audio properties