This is an automated email from the ASF dual-hosted git repository.

pushminakazi pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 692a7ce  Uncomment valueFormatFunction in NumericStepper.as
692a7ce is described below

commit 692a7ce49f5547def1d1e088bf35efa254dbd593
Author: pashminakazi <[email protected]>
AuthorDate: Mon Feb 24 17:17:46 2020 +0500

    Uncomment valueFormatFunction in NumericStepper.as
---
 .../src/main/royale/spark/components/NumericStepper.as       | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/NumericStepper.as
 
b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/NumericStepper.as
index 2ec2c9d..6b9afec 100644
--- 
a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/NumericStepper.as
+++ 
b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/NumericStepper.as
@@ -481,12 +481,12 @@ public class NumericStepper extends Range
     /**
      *  @private
      */
-    //private var _valueFormatFunction:Function;
+    private var _valueFormatFunction:Function;
     
     /**
      *  @private
      */
-    //private var valueFormatFunctionChanged:Boolean;
+    private var valueFormatFunctionChanged:Boolean;
     
     /**
      *  Callback function that formats the value displayed
@@ -506,21 +506,21 @@ public class NumericStepper extends Range
      *  @playerversion AIR 1.5
      *  @productversion Flex 4
      */
-    /* public function get valueFormatFunction():Function
+    public function get valueFormatFunction():Function
     {
         return _valueFormatFunction;
     }
-     */
+    
     /**
      *  @private
      */
-    /* public function set valueFormatFunction(value:Function):void
+    public function set valueFormatFunction(value:Function):void
     {
         _valueFormatFunction = value;
         valueFormatFunctionChanged = true;
         invalidateProperties();
     }
-     */
+
     //--------------------------------- 
     // valueParseFunction
     //---------------------------------

Reply via email to