summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorIvo van Dongen <info@ivovandongen.nl>2017-03-04 18:44:13 -0800
committerIvo van Dongen <ivovandongen@users.noreply.github.com>2017-03-09 13:11:23 -0800
commit548675a196f9e55d87cf8fce837b6e60393cb1b9 (patch)
tree92bc4134eaca3141298b9e298f30d191f038d046 /platform
parentd5c2920104ea733b8ed417d2b9bdbade61b049cd (diff)
downloadqtlocation-mapboxgl-548675a196f9e55d87cf8fce837b6e60393cb1b9.tar.gz
[core] rename query options for query rendered features
Diffstat (limited to 'platform')
-rw-r--r--platform/node/src/node_map.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/node/src/node_map.cpp b/platform/node/src/node_map.cpp
index 174db7d737..f6b672efee 100644
--- a/platform/node/src/node_map.cpp
+++ b/platform/node/src/node_map.cpp
@@ -882,7 +882,7 @@ void NodeMap::QueryRenderedFeatures(const Nan::FunctionCallbackInfo<v8::Value>&
return Nan::ThrowTypeError("First argument must have two components");
}
- mbgl::QueryOptions queryOptions;
+ mbgl::RenderedQueryOptions queryOptions;
if (!info[1]->IsNull() && !info[1]->IsUndefined()) {
if (!info[1]->IsObject()) {
return Nan::ThrowTypeError("options argument must be an object");