summaryrefslogtreecommitdiff
path: root/platform/macos/src/NSColor+MGLAdditions.h
diff options
context:
space:
mode:
authorJason Wray <jason@mapbox.com>2016-10-14 12:35:47 -0400
committerMinh Nguyễn <mxn@1ec5.org>2016-10-17 11:47:22 -0700
commita1d803f5188c5f440da6019d2917ad4ea6a141b9 (patch)
tree02e05ecbdde605a9da26012808ea60104a6f379c /platform/macos/src/NSColor+MGLAdditions.h
parent4ff1a736d485fcdb823dad7686973e6b031f079f (diff)
downloadqtlocation-mapboxgl-a1d803f5188c5f440da6019d2917ad4ea6a141b9.tar.gz
[ios, macos] Change runtime styling category method prefix to mgl_
This makes runtime styling category method naming consistent with the rest of the SDK.
Diffstat (limited to 'platform/macos/src/NSColor+MGLAdditions.h')
-rw-r--r--platform/macos/src/NSColor+MGLAdditions.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/macos/src/NSColor+MGLAdditions.h b/platform/macos/src/NSColor+MGLAdditions.h
index 2ba38f7d90..8dd8c1c17c 100644
--- a/platform/macos/src/NSColor+MGLAdditions.h
+++ b/platform/macos/src/NSColor+MGLAdditions.h
@@ -8,13 +8,13 @@
/**
Converts the color into an mbgl::Color in calibrated RGB space.
*/
-- (mbgl::Color)mbgl_color;
+- (mbgl::Color)mgl_color;
/**
Instantiates `NSColor` from an `mbgl::Color`
*/
-+ (NSColor *)mbgl_colorWithColor:(mbgl::Color)color;
++ (NSColor *)mgl_colorWithColor:(mbgl::Color)color;
-- (mbgl::style::PropertyValue<mbgl::Color>)mbgl_colorPropertyValue;
+- (mbgl::style::PropertyValue<mbgl::Color>)mgl_colorPropertyValue;
@end