Skip to content

Commit 5e2348d

Browse files
committed
Add class prefix to EmptyCalloutBackgroundView
1 parent 6d2804e commit 5e2348d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ios/AirMaps/AIRMapMarker.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
@end
5252

5353

54-
@interface EmptyCalloutBackgroundView : SMCalloutBackgroundView
55-
@end
54+
@interface AIREmptyCalloutBackgroundView : SMCalloutBackgroundView
55+
@end

ios/AirMaps/AIRMapMarker.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#import "RCTUtils.h"
1616
#import "RCTImageLoader.h"
1717

18-
@implementation EmptyCalloutBackgroundView
18+
@implementation AIREmptyCalloutBackgroundView
1919
@end
2020

2121
@implementation AIRMapMarker {
@@ -110,7 +110,7 @@ - (void)fillCalloutView:(SMCalloutView *)calloutView
110110
if (self.calloutView.tooltip) {
111111
// if tooltip is true, then the user wants their react view to be the "tooltip" as wwell, so we set
112112
// the background view to something empty/transparent
113-
calloutView.backgroundView = [EmptyCalloutBackgroundView new];
113+
calloutView.backgroundView = [AIREmptyCalloutBackgroundView new];
114114
} else {
115115
// the default tooltip look is wanted, and the user is just filling the content with their react subviews.
116116
// as a result, we use the default "masked" background view.

0 commit comments

Comments
 (0)