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/16 22:18:58 UTC

svn commit: r1398975 - /incubator/flex/sdk/branches/develop/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as

Author: cframpton
Date: Tue Oct 16 20:18:58 2012
New Revision: 1398975

URL: http://svn.apache.org/viewvc?rev=1398975&view=rev
Log:
FLEX-28982.  Fix null object reference in set openButton.

Modified:
    incubator/flex/sdk/branches/develop/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as

Modified: incubator/flex/sdk/branches/develop/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as?rev=1398975&r1=1398974&r2=1398975&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as (original)
+++ incubator/flex/sdk/branches/develop/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as Tue Oct 16 20:18:58 2012
@@ -105,7 +105,8 @@ public class DropDownController extends 
             
         _openButton = value;
         
-        _openButton.disableMinimumDownStateTime = true;
+        if (_openButton)
+        	_openButton.disableMinimumDownStateTime = true;
         
         addOpenTriggers();