aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2012-12-21 10:37:35 -0800
committerTor Norbye <tnorbye@google.com>2012-12-21 10:37:35 -0800
commitabef3c9d2e7031f6ddee85f1027a2d34a2128fc7 (patch)
tree3a7e3bf2b9ef60ae52634896b81dd8543c955e96 /eclipse
parentebaea617350d373dfc39d1a3d5c56aa3dedc252b (diff)
downloadsdk-abef3c9d2e7031f6ddee85f1027a2d34a2128fc7.zip
sdk-abef3c9d2e7031f6ddee85f1027a2d34a2128fc7.tar.gz
sdk-abef3c9d2e7031f6ddee85f1027a2d34a2128fc7.tar.bz2
41782: Graphical Layout Editor can't handle TabWidget
Change-Id: Ifc450a7ba91714be30a8fac6802fb28f72128822
Diffstat (limited to 'eclipse')
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ContextPullParser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ContextPullParser.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ContextPullParser.java
index 69710e4..62821ae 100644
--- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ContextPullParser.java
+++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ContextPullParser.java
@@ -143,7 +143,7 @@ public class ContextPullParser extends KXmlParser implements ILayoutPullParser {
@Override
public String getAttributeValue(String namespace, String localName) {
- if (localName.equals(ATTR_LAYOUT) && mFragmentLayout != null) {
+ if (ATTR_LAYOUT.equals(localName) && mFragmentLayout != null) {
return mFragmentLayout;
}