summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeith Bade <leith@mapbox.com>2014-12-23 11:34:27 +1300
committerLeith Bade <leith@mapbox.com>2014-12-23 11:34:27 +1300
commitae9fb18a8d5bd3ed21d2a6d7d48519a93c9f1086 (patch)
tree90132f3dbc0daf989d0ae809ea214a127c042578 /include
parentff3ea3e20b74f35bbaaceafd482217a1f83423cc (diff)
downloadqtlocation-mapboxgl-ae9fb18a8d5bd3ed21d2a6d7d48519a93c9f1086.tar.gz
Rename View functions
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/android/native_map_view.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mbgl/android/native_map_view.hpp b/include/mbgl/android/native_map_view.hpp
index f8cf34d3b4..2f0bde4b0e 100644
--- a/include/mbgl/android/native_map_view.hpp
+++ b/include/mbgl/android/native_map_view.hpp
@@ -19,13 +19,13 @@ public:
NativeMapView(JNIEnv* env, jobject obj);
virtual ~NativeMapView();
- void make_active() override;
- void make_inactive() override;
+ void activate() override;
+ void deactivate() override;
void swap() override;
void notify() override;
- void notify_map_change(mbgl::MapChange change, mbgl::timestamp delay) override;
+ void notifyMapChange(mbgl::MapChange change, mbgl::timestamp delay) override;
mbgl::Map& getMap();
mbgl::CachingHTTPFileSource& getFileSource();