diff options
author | Tor Norbye <tnorbye@google.com> | 2012-12-21 10:37:35 -0800 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2012-12-21 10:37:35 -0800 |
commit | abef3c9d2e7031f6ddee85f1027a2d34a2128fc7 (patch) | |
tree | 3a7e3bf2b9ef60ae52634896b81dd8543c955e96 /eclipse | |
parent | ebaea617350d373dfc39d1a3d5c56aa3dedc252b (diff) | |
download | sdk-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.java | 2 |
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; } |