diff options
| author | 2016-03-07 22:12:01 +0000 | |
|---|---|---|
| committer | 2016-03-07 22:12:01 +0000 | |
| commit | 39b205cc92bfc84e6eee5c7c4713ee9ab5bb645e (patch) | |
| tree | c89c3e70bfba701a88a2f65f4279ee72bd2b4c69 | |
| parent | 0ebc68a0e2134cc70b6df8eb6cb37352007f7293 (diff) | |
Add missing references to VNativeObject
Change-Id: I2db4ad94009c0daff4649da6f85e5c084f4c01ea
| -rw-r--r-- | tools/layoutlib/bridge/src/android/graphics/drawable/VectorDrawable_Delegate.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/layoutlib/bridge/src/android/graphics/drawable/VectorDrawable_Delegate.java b/tools/layoutlib/bridge/src/android/graphics/drawable/VectorDrawable_Delegate.java index 6e3aa40c0e19..90b84f830e76 100644 --- a/tools/layoutlib/bridge/src/android/graphics/drawable/VectorDrawable_Delegate.java +++ b/tools/layoutlib/bridge/src/android/graphics/drawable/VectorDrawable_Delegate.java @@ -204,14 +204,14 @@ public class VectorDrawable_Delegate { @LayoutlibDelegate static void nUpdateFullPathFillGradient(long pathPtr, long fillGradientPtr) { - VFullPath_Delegate path = getDelegate(pathPtr); + VFullPath_Delegate path = VNativeObject.getDelegate(pathPtr); path.setFillGradient(fillGradientPtr); } @LayoutlibDelegate static void nUpdateFullPathStrokeGradient(long pathPtr, long strokeGradientPtr) { - VFullPath_Delegate path = getDelegate(pathPtr); + VFullPath_Delegate path = VNativeObject.getDelegate(pathPtr); path.setStrokeGradient(strokeGradientPtr); } |