diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-07-23 15:37:01 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-07-29 12:09:22 +0200 |
commit | 270c24a9a8c8a02e62132cd4cb7b8aac2c1e6de5 (patch) | |
tree | 8b03393949d87e08680c54d9e29cd34036eb6f39 /src/style/style_properties.cpp | |
parent | 6e44e03241ff5b21f24f0f0d944c33ecdbeedead (diff) | |
download | qtlocation-mapboxgl-270c24a9a8c8a02e62132cd4cb7b8aac2c1e6de5.tar.gz |
add symbol* properties/keys
Diffstat (limited to 'src/style/style_properties.cpp')
-rw-r--r-- | src/style/style_properties.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/style/style_properties.cpp b/src/style/style_properties.cpp index 3d6bc41b81..3908d35ffa 100644 --- a/src/style/style_properties.cpp +++ b/src/style/style_properties.cpp @@ -6,6 +6,7 @@ template<> const FillProperties &defaultStyleProperties() { static const FillPro template<> const LineProperties &defaultStyleProperties() { static const LineProperties p; return p; } template<> const IconProperties &defaultStyleProperties() { static const IconProperties p; return p; } template<> const TextProperties &defaultStyleProperties() { static const TextProperties p; return p; } +template<> const SymbolProperties &defaultStyleProperties() { static const SymbolProperties p; return p; } template<> const CompositeProperties &defaultStyleProperties() { static const CompositeProperties p; return p; } template<> const RasterProperties &defaultStyleProperties() { static const RasterProperties p; return p; } template<> const BackgroundProperties &defaultStyleProperties() { static const BackgroundProperties p; return p; } |