summaryrefslogtreecommitdiff
path: root/src/mbgl/gl
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2020-03-18 16:46:24 +0200
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2020-03-24 20:53:55 +0200
commit280b80677797ceda07ddf75f567dd3613f285319 (patch)
treeef1eef74a7c17677fdff50dbf4bbbb8452b5ce0f /src/mbgl/gl
parent99dbb3eed50f1b89d23604916cee6de965e1f4cb (diff)
downloadqtlocation-mapboxgl-280b80677797ceda07ddf75f567dd3613f285319.tar.gz
[core] Move generic setProperty() parts to the base Layer class
Diffstat (limited to 'src/mbgl/gl')
-rw-r--r--src/mbgl/gl/custom_layer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/gl/custom_layer.cpp b/src/mbgl/gl/custom_layer.cpp
index 456467e904..bb87868d78 100644
--- a/src/mbgl/gl/custom_layer.cpp
+++ b/src/mbgl/gl/custom_layer.cpp
@@ -38,7 +38,7 @@ std::unique_ptr<Layer> CustomLayer::cloneRef(const std::string&) const {
using namespace conversion;
-optional<Error> CustomLayer::setProperty(const std::string&, const Convertible&) {
+optional<Error> CustomLayer::setPropertyInternal(const std::string&, const Convertible&) {
return Error { "layer doesn't support this property" };
}