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/03/23 07:19:08 UTC

[royale-asjs] branch feature/MXRoyale updated (c93a85d -> dc52534)

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

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


    from c93a85d  handle no initialView
     new 654044d  Flex MX defaulted to Arial 12px
     new dc52534  fix wrappers

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../Basic/src/main/royale/org/apache/royale/core/UIBase.as        | 8 ++++----
 frameworks/projects/MXRoyale/src/main/resources/defaults.css      | 3 ++-
 2 files changed, 6 insertions(+), 5 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
aharui@apache.org.

[royale-asjs] 01/02: Flex MX defaulted to Arial 12px

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 654044de8fec94c4364a2c73e4487706b7f24dd3
Author: Alex Harui <ah...@apache.org>
AuthorDate: Fri Mar 23 00:18:31 2018 -0700

    Flex MX defaulted to Arial 12px
---
 frameworks/projects/MXRoyale/src/main/resources/defaults.css | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/frameworks/projects/MXRoyale/src/main/resources/defaults.css b/frameworks/projects/MXRoyale/src/main/resources/defaults.css
index 43f45f4..6b735f5 100644
--- a/frameworks/projects/MXRoyale/src/main/resources/defaults.css
+++ b/frameworks/projects/MXRoyale/src/main/resources/defaults.css
@@ -28,6 +28,8 @@
 global {
     IStatesImpl:            ClassReference("org.apache.royale.core.StatesWithTransitionsImpl");
 	IEffectTimer: 			ClassReference("org.apache.royale.utils.EffectTimer");
+	font-size: 12px;
+	font-family: Arial;
 }
 
 /* -------------------------------------------------------
@@ -45,7 +47,6 @@ Button
 	text-align: center;
 	text-decoration: none;
 	display: inline-block;
-	font-size: 12px;
 }
 Button:hover {
 	background-color: #CCCCCC;

-- 
To stop receiving notification emails like this one, please contact
aharui@apache.org.

[royale-asjs] 02/02: fix wrappers

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit dc525341ac07496b846a2ae6d2a9096d95c725e6
Author: Alex Harui <ah...@apache.org>
AuthorDate: Fri Mar 23 00:18:56 2018 -0700

    fix wrappers
---
 .../Basic/src/main/royale/org/apache/royale/core/UIBase.as        | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
index 33a61f4..7bf5d6f 100644
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
@@ -1586,12 +1586,12 @@ package org.apache.royale.core
         COMPILE::SWF
         public function $addChildAt(child:DisplayObject, index:int):DisplayObject
         {
-            return super.addChildAt(child, int);
+            return super.addChildAt(child, index);
         }
         COMPILE::SWF
         public function $removeChildAt(index:int):DisplayObject
         {
-            return super.removeChildAt(int);
+            return super.removeChildAt(index);
         }
         COMPILE::SWF
         public function $removeChild(child:DisplayObject):DisplayObject
@@ -1601,12 +1601,12 @@ package org.apache.royale.core
         COMPILE::SWF
         public function $getChildAt(index:int):DisplayObject
         {
-            return super.getChildAt(int);
+            return super.getChildAt(index);
         }
         COMPILE::SWF
         public function $setChildIndex(index:int):void
         {
-            super.setChildIndex(int);
+            super.setChildIndex(index);
         }
         COMPILE::SWF
         public function $getChildIndex(child:DisplayObject):int

-- 
To stop receiving notification emails like this one, please contact
aharui@apache.org.