Move _applyXmlAttribute outside @private block.

Fixes a broken interface implementation error in the public d.ts.
This commit is contained in:
Hristo Deshev
2015-07-13 17:21:21 +03:00
parent feadf177de
commit 56f42c654b

5
ui/core/view.d.ts vendored
View File

@@ -412,6 +412,8 @@ declare module "ui/core/view" {
_removeView(view: View);
_context: android.content.Context;
public _applyXmlAttribute(attribute: string, value: any): boolean;
// TODO: Implement logic for stripping these lines out
//@private
_gestureObservers: Map<number, Array<gestures.GesturesObserver>>;
@@ -441,7 +443,6 @@ declare module "ui/core/view" {
_updateLayout(): void;
_applyXmlAttribute(attribute, value): boolean;
/**
* Called my measure method to cache measureSpecs.
@@ -519,4 +520,4 @@ declare module "ui/core/view" {
*/
_applyXmlAttribute(attributeName: string, attrValue: any): boolean;
}
}
}