You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2018/04/09 15:20:32 UTC

[GitHub] pentapache closed pull request #150: ScrollEvent

pentapache closed pull request #150: ScrollEvent
URL: https://github.com/apache/royale-asjs/pull/150
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as b/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
index 22dd985a6..d8a2b54b0 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
@@ -37,6 +37,7 @@ internal class MXRoyaleClasses
 	import mx.containers.ControlBar; ControlBar;
 	import mx.controls.ToolTip; ToolTip;
 	import mx.controls.beads.ToolTipBead; ToolTipBead;
+	import mx.events.ScrollEvent; ScrollEvent;
 	import mx.events.MoveEvent; MoveEvent;
 	import mx.events.ValidationResultEvent; ValidationResultEvent;
 	import mx.containers.Tile; Tile;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/events/ScrollEvent.as b/frameworks/projects/MXRoyale/src/main/royale/mx/events/ScrollEvent.as
index 4a6a8dc66..8bd916df5 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/events/ScrollEvent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/events/ScrollEvent.as
@@ -31,7 +31,8 @@ import org.apache.royale.events.Event;
  *  @langversion 3.0
  *  @playerversion Flash 9
  *  @playerversion AIR 1.1
- *  @productversion Flex 3
+ *  @productversion Royale 0.9.3
+ *  @royalesuppresspublicvarwarning
  */
 public class ScrollEvent extends Event
 {
@@ -74,7 +75,7 @@ public class ScrollEvent extends Event
 	 *  @langversion 3.0
 	 *  @playerversion Flash 9
 	 *  @playerversion AIR 1.1
-	 *  @productversion Flex 3
+	 *  @productversion Royale 0.9.3
 	 */
 	public static const SCROLL:String = "scroll";
 
@@ -110,7 +111,7 @@ public class ScrollEvent extends Event
 	 *  @langversion 3.0
 	 *  @playerversion Flash 9
 	 *  @playerversion AIR 1.1
-	 *  @productversion Flex 3
+	 *  @productversion Royale 0.9.3
 	 */
 	public function ScrollEvent(type:String, bubbles:Boolean = false,
 								cancelable:Boolean = false,
@@ -144,7 +145,7 @@ public class ScrollEvent extends Event
 	 *  @langversion 3.0
 	 *  @playerversion Flash 9
 	 *  @playerversion AIR 1.1
-	 *  @productversion Flex 3
+	 *  @productversion Royale 0.9.3
 	 */
 	public var delta:Number;
 
@@ -162,7 +163,7 @@ public class ScrollEvent extends Event
 	 *  @langversion 3.0
 	 *  @playerversion Flash 9
 	 *  @playerversion AIR 1.1
-	 *  @productversion Flex 3
+	 *  @productversion Royale 0.9.3
 	 */
 	public var detail:String;
 
@@ -180,7 +181,7 @@ public class ScrollEvent extends Event
 	 *  @langversion 3.0
 	 *  @playerversion Flash 9
 	 *  @playerversion AIR 1.1
-	 *  @productversion Flex 3
+	 *  @productversion Royale 0.9.3
 	 */
 	public var direction:String;
 
@@ -194,7 +195,7 @@ public class ScrollEvent extends Event
      *  @langversion 3.0
      *  @playerversion Flash 9
      *  @playerversion AIR 1.1
-     *  @productversion Flex 3
+     *  @productversion Royale 0.9.3
      */
     public var position:Number;
 
@@ -207,7 +208,7 @@ public class ScrollEvent extends Event
 	/**
 	 *  @private
 	 */
-	override public function clone():Event
+	override public function cloneEvent():Event
 	{
 		return new ScrollEvent(type, bubbles, cancelable, 
                                detail, position, direction, delta);


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services