You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2014/08/17 09:47:51 UTC

[04/50] git commit: [flex-sdk] [refs/heads/new_android_skins] - FLEX-34285 fix issue with remove

FLEX-34285 fix issue with remove


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/d478f685
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/d478f685
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/d478f685

Branch: refs/heads/new_android_skins
Commit: d478f6852014a6c8c955580c737e6fe7d40a5f93
Parents: 0d2342a
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Jul 7 18:56:51 2014 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Jul 7 18:56:51 2014 +1000

----------------------------------------------------------------------
 frameworks/projects/framework/src/mx/collections/XMLListAdapter.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/d478f685/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as b/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as
index 17d2173..0a8b5e6 100644
--- a/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as
+++ b/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as
@@ -420,7 +420,7 @@ public class XMLListAdapter extends EventDispatcher implements IList, IXMLNotifi
 	 */
 	public function removeItem( item:Object ):Boolean
 	{
-		var _item:Object = removeItemAt[getItemIndex(item)];
+		var _item:Object = removeItemAt(getItemIndex(item));
 		return _item != null;
 	}