diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2015-04-21 15:02:30 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2015-04-28 14:32:22 -0400 |
commit | 6c7a01a503530843f88d240988514dc3f40795a7 (patch) | |
tree | 8009756e3d5edb66a50daed49d96e97b540959f7 /android | |
parent | 75ae956b0e598685117f7f72231677d8841cbea3 (diff) | |
download | qtlocation-mapboxgl-6c7a01a503530843f88d240988514dc3f40795a7.tar.gz |
Following kkaefer's view changes
Diffstat (limited to 'android')
-rw-r--r-- | android/cpp/native_map_view.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/cpp/native_map_view.cpp b/android/cpp/native_map_view.cpp index 7b319d8b03..8d12d5af16 100644 --- a/android/cpp/native_map_view.cpp +++ b/android/cpp/native_map_view.cpp @@ -825,8 +825,8 @@ void NativeMapView::updateFps() { env = nullptr; } -void NativeMapView::resize(uint16_t width, uint16_t height, float ratio, uint16_t fbWidth, uint16_t fbHeight) { - View::resize(width, height, ratio, fbWidth, fbHeight); +void NativeMapView::resize(uint16_t width, uint16_t height, float ratio, uint16_t, uint16_t) { + map.resize(width, height, ratio); } } |