You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cf...@apache.org on 2012/10/15 22:06:21 UTC

svn commit: r1398487 - /incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as

Author: cframpton
Date: Mon Oct 15 20:06:21 2012
New Revision: 1398487

URL: http://svn.apache.org/viewvc?rev=1398487&view=rev
Log:
Add null value check requested in https://issues.apache.org/jira/browse/FLEX-29002.

Modified:
    incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as

Modified: incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as?rev=1398487&r1=1398486&r2=1398487&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as (original)
+++ incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as Mon Oct 15 20:06:21 2012
@@ -1443,9 +1443,9 @@ public class PopUpManagerImpl extends Ev
 				for (var i:int = 0; i < n; i++)
 				{
 					var o:PopUpData = popupInfo[i];
-					if (o && o != p)
+					if (o && o != p && o.owner.accessibilityProperties)
 					{
-						o.owner.accessibilityProperties.silent	= true;
+						o.owner.accessibilityProperties.silent = true;
 					}
 				}