You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2018/11/22 02:47:02 UTC

[royale-asjs] 02/02: switch to default import of mx.events.MouseEvent

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

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

commit 3c6f53c1ac5c0d0964ed8d9dd12ddbb067250306
Author: Alex Harui <ah...@apache.org>
AuthorDate: Wed Nov 21 18:46:43 2018 -0800

    switch to default import of mx.events.MouseEvent
---
 examples/mxroyale/tourdeflexmodules/src/explorer.mxml                   | 1 -
 examples/mxroyale/tourdeflexmodules/src/mx/controls/ButtonExample.mxml  | 2 --
 examples/mxroyale/tourdeflexmodules/src/mx/controls/SimpleAlert.mxml    | 1 -
 .../mxroyale/tourdeflexmodules/src/spark/controls/ButtonExample.mxml    | 1 -
 4 files changed, 5 deletions(-)

diff --git a/examples/mxroyale/tourdeflexmodules/src/explorer.mxml b/examples/mxroyale/tourdeflexmodules/src/explorer.mxml
index 0db9474..9661821 100755
--- a/examples/mxroyale/tourdeflexmodules/src/explorer.mxml
+++ b/examples/mxroyale/tourdeflexmodules/src/explorer.mxml
@@ -25,7 +25,6 @@
         <![CDATA[
 		import mx.core.FlexGlobals;
         import org.apache.royale.core.BrowserWindow;
-        import org.apache.royale.events.MouseEvent;
         import org.apache.royale.net.URLLoader;
         import org.apache.royale.net.URLRequest;
 
diff --git a/examples/mxroyale/tourdeflexmodules/src/mx/controls/ButtonExample.mxml b/examples/mxroyale/tourdeflexmodules/src/mx/controls/ButtonExample.mxml
index 6a61f22..4f0f65f 100755
--- a/examples/mxroyale/tourdeflexmodules/src/mx/controls/ButtonExample.mxml
+++ b/examples/mxroyale/tourdeflexmodules/src/mx/controls/ButtonExample.mxml
@@ -24,8 +24,6 @@
      <fx:Script>
         <![CDATA[
 
-            import org.apache.royale.events.MouseEvent;
-
             // Event handler function to print a message
             // describing the selected Button control.
             private function printMessage(event:MouseEvent):void  {
diff --git a/examples/mxroyale/tourdeflexmodules/src/mx/controls/SimpleAlert.mxml b/examples/mxroyale/tourdeflexmodules/src/mx/controls/SimpleAlert.mxml
index 97f4801..0f8318f 100755
--- a/examples/mxroyale/tourdeflexmodules/src/mx/controls/SimpleAlert.mxml
+++ b/examples/mxroyale/tourdeflexmodules/src/mx/controls/SimpleAlert.mxml
@@ -25,7 +25,6 @@
         <![CDATA[
             import mx.controls.Alert;
             import org.apache.royale.events.CloseEvent;
-            import org.apache.royale.events.MouseEvent;
         
             // Event handler function uses a static method to show
             // a pop-up window with the title, message, and requested buttons.        
diff --git a/examples/mxroyale/tourdeflexmodules/src/spark/controls/ButtonExample.mxml b/examples/mxroyale/tourdeflexmodules/src/spark/controls/ButtonExample.mxml
index d0dc92f..9e0cf09 100644
--- a/examples/mxroyale/tourdeflexmodules/src/spark/controls/ButtonExample.mxml
+++ b/examples/mxroyale/tourdeflexmodules/src/spark/controls/ButtonExample.mxml
@@ -23,7 +23,6 @@
 	
 	<fx:Script>
 		<![CDATA[
-			import org.apache.royale.events.MouseEvent;
 			
 			protected function buttonClickHandler(event:MouseEvent):void
 			{