[TagLib Plugin] Fixed some mislocated headers

These header files were imported from the wrong path. I really have no
idea why Xcode didn't catch these already with my build tree.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
swiftingly
Christopher Snowhill 2022-06-17 00:30:08 -07:00
parent f2f71d0c9b
commit 90b06850d0
2 changed files with 6 additions and 6 deletions

View File

@ -26,8 +26,8 @@
#ifndef TAGLIB_REFCOUNTER_H
#define TAGLIB_REFCOUNTER_H
#include "taglib_export.h"
#include "taglib.h"
#include <taglib/taglib_export.h>
#include <taglib/taglib.h>
#ifdef __APPLE__
# include <atomic>

View File

@ -9,15 +9,15 @@
#import "TagLibMetadataReader.h"
#import <taglib/audioproperties.h>
#import <taglib/fileref.h>
#import <taglib/flacfile.h>
#import <taglib/flac/flacfile.h>
#import <taglib/mp4/mp4file.h>
#import <taglib/mpcproperties.h>
#import <taglib/mpc/mpcproperties.h>
#import <taglib/mpeg/id3v2/frames/attachedpictureframe.h>
#import <taglib/mpeg/id3v2/id3v2tag.h>
#import <taglib/mpeg/mpegfile.h>
#import <taglib/tag.h>
#import <taglib/vorbisfile.h>
#import <taglib/xiphcomment.h>
#import <taglib/ogg/vorbis/vorbisfile.h>
#import <taglib/ogg/xiphcomment.h>
@implementation TagLibMetadataReader