summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layers/custom_layer.hpp
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-09-26 14:58:00 +0300
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-09-26 15:54:03 +0300
commit34ab7be2251bc8f6afca29c7a2ce3b6f1bc7cb10 (patch)
treee417953320d3101a53a7152ee6abe041e4f2cfdd /include/mbgl/style/layers/custom_layer.hpp
parent1733e29f0ac7ffe7c1aa5bf54d8f710befcdd2ea (diff)
downloadqtlocation-mapboxgl-34ab7be2251bc8f6afca29c7a2ce3b6f1bc7cb10.tar.gz
[core] Layer::getPaintProperty() -> Layer::getProperty()
Diffstat (limited to 'include/mbgl/style/layers/custom_layer.hpp')
-rw-r--r--include/mbgl/style/layers/custom_layer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/style/layers/custom_layer.hpp b/include/mbgl/style/layers/custom_layer.hpp
index ad27226505..c193cfb8d9 100644
--- a/include/mbgl/style/layers/custom_layer.hpp
+++ b/include/mbgl/style/layers/custom_layer.hpp
@@ -71,7 +71,7 @@ public:
// Dynamic properties
optional<conversion::Error> setLayoutProperty(const std::string& name, const conversion::Convertible& value) final;
optional<conversion::Error> setPaintProperty(const std::string& name, const conversion::Convertible& value) final;
- StyleProperty getPaintProperty(const std::string&) const final;
+ StyleProperty getProperty(const std::string&) const final;
// Private implementation
class Impl;