You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by gr...@apache.org on 2020/10/25 20:33:18 UTC

[royale-asjs] branch develop updated: Fix for JS-only stubs (these probably also should have matching getters)

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

gregdove 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 9aed7b8  Fix for JS-only stubs (these probably also should have matching getters)
9aed7b8 is described below

commit 9aed7b89b021e640163fc1bff53c22984ede4f9d
Author: greg-dove <gr...@gmail.com>
AuthorDate: Mon Oct 26 09:33:00 2020 +1300

    Fix for JS-only stubs (these probably also should have matching getters)
---
 .../main/royale/mx/controls/dataGridClasses/DataGridItemRenderer.as  | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/dataGridClasses/DataGridItemRenderer.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/dataGridClasses/DataGridItemRenderer.as
index fd1dd2b..1d0ed98 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/dataGridClasses/DataGridItemRenderer.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/dataGridClasses/DataGridItemRenderer.as
@@ -240,10 +240,13 @@ public class DataGridItemRenderer extends StringItemRenderer
         callLater(dispatchUpdateComplete); 
     }
 
+    COMPILE::JS
     public function set useHandCursor(value:Boolean):void {} // not implemented
+    COMPILE::JS
     public function set buttonMode(value:Boolean):void {} // not implemented
+    COMPILE::JS
     public function set focusEnabled(value:Boolean):void {} // not implemented
-    
+
     protected function dispatchUpdateComplete():void
     {
         dispatchEvent(new Event("updateComplete"));