From f874c0dcba46a165f7f17df15f8cddeb78503bbd Mon Sep 17 00:00:00 2001 From: Grigorii Lutkov Date: Fri, 6 Sep 2024 22:33:56 +0300 Subject: [PATCH] fix: broken import paths (#89) --- LGAlertView/LGAlertView.h | 4 ++-- LGAlertView/LGAlertViewButtonProperties.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LGAlertView/LGAlertView.h b/LGAlertView/LGAlertView.h index df0aa76..652aeaf 100644 --- a/LGAlertView/LGAlertView.h +++ b/LGAlertView/LGAlertView.h @@ -28,8 +28,8 @@ // #import -#import -#import +#import "LGAlertViewButtonProperties.h" +#import "LGAlertViewShared.h" @class LGAlertView; @protocol LGAlertViewDelegate; diff --git a/LGAlertView/LGAlertViewButtonProperties.h b/LGAlertView/LGAlertViewButtonProperties.h index 7c5fb73..9f409d5 100644 --- a/LGAlertView/LGAlertViewButtonProperties.h +++ b/LGAlertView/LGAlertViewButtonProperties.h @@ -28,7 +28,7 @@ // #import -#import +#import "LGAlertViewShared.h" @interface LGAlertViewButtonProperties : NSObject