From 90b06850d0bd5e48e2d69ff11047837c2cba5682 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Fri, 17 Jun 2022 00:30:08 -0700 Subject: [PATCH] [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 --- Frameworks/TagLib/taglib/taglib/toolkit/trefcounter.h | 4 ++-- Plugins/TagLib/TagLibMetadataReader.m | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Frameworks/TagLib/taglib/taglib/toolkit/trefcounter.h b/Frameworks/TagLib/taglib/taglib/toolkit/trefcounter.h index e547340fe..96b54d409 100644 --- a/Frameworks/TagLib/taglib/taglib/toolkit/trefcounter.h +++ b/Frameworks/TagLib/taglib/taglib/toolkit/trefcounter.h @@ -26,8 +26,8 @@ #ifndef TAGLIB_REFCOUNTER_H #define TAGLIB_REFCOUNTER_H -#include "taglib_export.h" -#include "taglib.h" +#include +#include #ifdef __APPLE__ # include diff --git a/Plugins/TagLib/TagLibMetadataReader.m b/Plugins/TagLib/TagLibMetadataReader.m index 35925d6cf..0721a6fb3 100644 --- a/Plugins/TagLib/TagLibMetadataReader.m +++ b/Plugins/TagLib/TagLibMetadataReader.m @@ -9,15 +9,15 @@ #import "TagLibMetadataReader.h" #import #import -#import +#import #import -#import +#import #import #import #import #import -#import -#import +#import +#import @implementation TagLibMetadataReader