summaryrefslogtreecommitdiff
path: root/platform/macos/src/MGLMapView.mm
diff options
context:
space:
mode:
authorChris Loer <chris.loer@gmail.com>2018-12-09 13:30:18 +0200
committerChris Loer <chris.loer@mapbox.com>2018-12-11 11:46:16 -0800
commit662a4955615d201f6d1525dcbf3cc08da3d546b4 (patch)
treeda1ab00d49c7c9102bfcb66c00c0bb75bdff7a1e /platform/macos/src/MGLMapView.mm
parent70c2d5a4cabcd87bc4e6e564fcd6dfa10bd4c521 (diff)
downloadqtlocation-mapboxgl-662a4955615d201f6d1525dcbf3cc08da3d546b4.tar.gz
[docs] EnterIdle -> BecomeIdle
Diffstat (limited to 'platform/macos/src/MGLMapView.mm')
-rw-r--r--platform/macos/src/MGLMapView.mm10
1 files changed, 5 insertions, 5 deletions
diff --git a/platform/macos/src/MGLMapView.mm b/platform/macos/src/MGLMapView.mm
index eb877216d2..1ba2483d52 100644
--- a/platform/macos/src/MGLMapView.mm
+++ b/platform/macos/src/MGLMapView.mm
@@ -934,13 +934,13 @@ public:
}
}
-- (void)mapViewDidEnterIdle {
+- (void)mapViewDidBecomeIdle {
if (!_mbglMap) {
return;
}
- if ([self.delegate respondsToSelector:@selector(mapViewDidEnterIdle)]) {
- [self.delegate mapViewDidEnterIdle:self];
+ if ([self.delegate respondsToSelector:@selector(mapViewDidBecomeIdle)]) {
+ [self.delegate mapViewDidBecomeIdle:self];
}
}
@@ -3061,8 +3061,8 @@ public:
[nativeView mapViewDidFinishRenderingMapFullyRendered:fullyRendered];
}
- void onDidEnterIdle() override {
- [nativeView mapViewDidEnterIdle];
+ void onDidBecomeIdle() override {
+ [nativeView mapViewDidBecomeIdle];
}
void onDidFinishLoadingStyle() override {