aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-06-04 14:13:06 +0000
committerGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-06-04 14:13:06 +0000
commitda30999f2b71fdc2997fdb83fb65146c053759ed (patch)
treec9abe3df62808532847817701bd4da33c5b26116 /include
parentc6ff3e7a492e6fb6b9344b3dfd5d6dcda4c7a881 (diff)
change static variable to #define
git-svn-id: http://skia.googlecode.com/svn/trunk@4138 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r--include/ports/SkTypeface_android.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ports/SkTypeface_android.h b/include/ports/SkTypeface_android.h
index 0b90021625..09fcf3b1f7 100644
--- a/include/ports/SkTypeface_android.h
+++ b/include/ports/SkTypeface_android.h
@@ -32,7 +32,7 @@ enum FallbackScripts {
// This particular mapping will be removed after WebKit is updated to use the
// new mappings. No new caller should use the kTamil_FallbackScript but rather
// the more specific Tamil scripts in the standard enum.
-static FallbackScripts kTamil_FallbackScript = kTamilRegular_FallbackScript;
+#define kTamil_FallbackScript kTamilRegular_FallbackScript
#define SkTypeface_ValidScript(s) (s >= 0 && s < kFallbackScriptNumber)