summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-01-14 15:37:37 -0800
committerMinh Nguyễn <mxn@1ec5.org>2016-01-14 16:48:16 -0800
commit714dfab8aeb04b3569f022e7c22aac9a6435752d (patch)
treed4c50c09c080bbd75b830fe6431d05937d264d40 /platform
parentb52b634e5bc0d257c54bdc04057c1ce8b9ce4b76 (diff)
downloadqtlocation-mapboxgl-714dfab8aeb04b3569f022e7c22aac9a6435752d.tar.gz
[osx] Fixed static analyzer warnings
Diffstat (limited to 'platform')
-rw-r--r--platform/osx/src/MGLMapView.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/src/MGLMapView.mm b/platform/osx/src/MGLMapView.mm
index 505adb20a3..57df0af6a0 100644
--- a/platform/osx/src/MGLMapView.mm
+++ b/platform/osx/src/MGLMapView.mm
@@ -1929,7 +1929,7 @@ public:
- (void)popoverDidShow:(__unused NSNotification *)notification {
id <MGLAnnotation> annotation = self.selectedAnnotation;
- if ([self.delegate respondsToSelector:@selector(mapView:didSelectAnnotation:)]) {
+ if (annotation && [self.delegate respondsToSelector:@selector(mapView:didSelectAnnotation:)]) {
[self.delegate mapView:self didSelectAnnotation:annotation];
}
}