From a613eae6d3c12ea0e519d38993fd471c69f6cb22 Mon Sep 17 00:00:00 2001 From: Xavier Ducrohet Date: Thu, 9 Jun 2011 15:42:31 -0700 Subject: Renamed some resource enum/qualifiers to be more consistent with the platform. Change-Id: I9c5ea5183e115582e0b805ca3ec75aad70e4a65c --- .../src/com/android/ide/common/rendering/api/RenderParams.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'layoutlib_api') diff --git a/layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java b/layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java index 2cfe770..32c1ff2 100644 --- a/layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java +++ b/layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java @@ -17,7 +17,7 @@ package com.android.ide.common.rendering.api; import com.android.resources.Density; -import com.android.resources.ScreenSize; +import com.android.resources.ScreenLayoutSize; /** * Base class for rendering parameters. This include the generic parameters but not what needs @@ -46,7 +46,7 @@ public abstract class RenderParams { private IImageFactory mImageFactory = null; - private ScreenSize mConfigScreenSize = null; + private ScreenLayoutSize mConfigScreenSize = null; private String mAppIcon = null; private String mAppLabel = null; private String mLocale = null; @@ -138,7 +138,7 @@ public abstract class RenderParams { mImageFactory = imageFactory; } - public void setConfigScreenSize(ScreenSize size) { + public void setConfigScreenSize(ScreenLayoutSize size) { mConfigScreenSize = size; } @@ -218,7 +218,7 @@ public abstract class RenderParams { return mImageFactory; } - public ScreenSize getConfigScreenSize() { + public ScreenLayoutSize getConfigScreenSize() { return mConfigScreenSize; } -- cgit v1.1