You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by yi...@apache.org on 2019/11/19 08:52:19 UTC

[royale-asjs] 02/02: Reformat ItemClickedEvent

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

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

commit d9005872e6fd1fb9001ee5f99be08aa8511ca604
Author: DESKTOP-RH4S838\Yishay <yi...@hotmail.com>
AuthorDate: Tue Nov 19 10:47:50 2019 +0200

    Reformat ItemClickedEvent
---
 .../org/apache/royale/events/ItemClickedEvent.as   | 30 +++++++++++-----------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/events/ItemClickedEvent.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/events/ItemClickedEvent.as
index 604dc6f..c4c239f 100644
--- a/frameworks/projects/Core/src/main/royale/org/apache/royale/events/ItemClickedEvent.as
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/events/ItemClickedEvent.as
@@ -21,7 +21,7 @@ package org.apache.royale.events
 {
 
 	import org.apache.royale.events.CustomEvent;
-	
+
 	/**
 	 * The ItemClickedEvent is a custom event issued by an itemRenderer to
 	 * convey information about itself when it has determined that the
@@ -31,8 +31,8 @@ package org.apache.royale.events
 	 * @playerversion Flash 10.2
 	 * @playerversion AIR 2.6
 	 * @productversion Royale 0.0
-     * 
-     *  @royalesuppresspublicvarwarning
+	 * 
+	 *  @royalesuppresspublicvarwarning
 	 */
 	public class ItemClickedEvent extends CustomEvent
 	{
@@ -55,21 +55,21 @@ package org.apache.royale.events
 		 */
 		public function ItemClickedEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false)
 		{
-            COMPILE::SWF
-            {
-                super(type, bubbles, cancelable);                    
-            }
-            COMPILE::JS
-            {
-                super(type);
-            }
-			
+			COMPILE::SWF
+			{
+				super(type, bubbles, cancelable);                    
+			}
+			COMPILE::JS
+			{
+				super(type);
+			}
+
 			index = -1;
 			data = null;
 			shiftKey = false;
 			ctrlKey = false;
 		}
-		
+
 		/**
 		 * The index of the item beginning with zero.
 		 *
@@ -80,7 +80,7 @@ package org.apache.royale.events
 		 * @productversion Royale 0.0
 		 */
 		public var index:Number;
-		
+
 		/**
 		 * The data of the item.
 		 *
@@ -91,7 +91,7 @@ package org.apache.royale.events
 		 * @productversion Royale 0.0
 		 */
 		public var data:Object;
-		
+
 		/**
 		 * Whether or not this click was done while holding the shift key
 		 *