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

[royale-asjs] branch dgchanges created (now 278d20e)

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

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


      at 278d20e  dg column to IDataGrid changes

This branch includes the following new commits:

     new 278d20e  dg column to IDataGrid changes

The 1 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.



[royale-asjs] 01/01: dg column to IDataGrid changes

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

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

commit 278d20e4ae36c287464411a26128ce84fe88d113
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Sun Oct 25 18:12:27 2020 +0100

    dg column to IDataGrid changes
---
 .../royale/jewel/supportClasses/datagrid/DataGridColumnList.as    | 8 ++++----
 .../royale/jewel/supportClasses/datagrid/IDataGridColumnList.as   | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/datagrid/DataGridColumnList.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/datagrid/DataGridColumnList.as
index 7ac0a26..6a394c7 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/datagrid/DataGridColumnList.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/datagrid/DataGridColumnList.as
@@ -19,7 +19,7 @@
 package org.apache.royale.jewel.supportClasses.datagrid
 {
     import org.apache.royale.core.IBead;
-    import org.apache.royale.jewel.DataGrid;
+    import org.apache.royale.core.IDataGrid;
     import org.apache.royale.jewel.List;
     import org.apache.royale.jewel.beads.models.DataGridColumnListPresentationModel;
     import org.apache.royale.jewel.supportClasses.datagrid.IDataGridColumnList;
@@ -87,7 +87,7 @@ package org.apache.royale.jewel.supportClasses.datagrid
                 _columnInfo = value;
         }
 
-        private var _datagrid:DataGrid;
+        private var _datagrid:IDataGrid;
         /**
 		 *  Pointer back to the DataGrid that owns this column List
 		 *
@@ -96,10 +96,10 @@ package org.apache.royale.jewel.supportClasses.datagrid
 		 *  @playerversion AIR 2.6
 		 *  @productversion Royale 0.9.7
 		 */
-		public function get datagrid():DataGrid {
+		public function get datagrid():IDataGrid {
             return _datagrid;
         }
-		public function set datagrid(value:DataGrid):void {
+		public function set datagrid(value:IDataGrid):void {
             _datagrid = value;
         }
 
diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/datagrid/IDataGridColumnList.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/datagrid/IDataGridColumnList.as
index a5fe2fd..823feba 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/datagrid/IDataGridColumnList.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/datagrid/IDataGridColumnList.as
@@ -18,9 +18,9 @@
 ////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel.supportClasses.datagrid
 {
+    import org.apache.royale.core.IDataGrid;
     import org.apache.royale.core.IListWithPresentationModel;
     import org.apache.royale.html.supportClasses.IDataGridColumnList;
-    import org.apache.royale.jewel.DataGrid;
     import org.apache.royale.utils.IEmphasis;
 
     /**
@@ -44,8 +44,8 @@ package org.apache.royale.jewel.supportClasses.datagrid
 		 *  @playerversion AIR 2.6
 		 *  @productversion Royale 0.9.7
 		 */
-		function get datagrid():DataGrid;
-		function set datagrid(value:DataGrid):void;
+		function get datagrid():IDataGrid;
+		function set datagrid(value:IDataGrid):void;
 
         /**
          *  The DataGridColumn for this list