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/07/28 14:42:17 UTC

[royale-asjs] branch develop updated: Core-ITableView: missing settters

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

carlosrovira 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 89681c8  Core-ITableView: missing settters
89681c8 is described below

commit 89681c8164f08399ba75b0d8660351beb7ca45ff
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Tue Jul 28 16:41:38 2020 +0200

    Core-ITableView: missing settters
---
 .../Core/src/main/royale/org/apache/royale/html/beads/ITableView.as     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/html/beads/ITableView.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/html/beads/ITableView.as
index 5f088f8..6074770 100644
--- a/frameworks/projects/Core/src/main/royale/org/apache/royale/html/beads/ITableView.as
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/html/beads/ITableView.as
@@ -53,6 +53,7 @@ package org.apache.royale.html.beads
 		 *  @productversion Royale 0.10.0
 		 */
 		function get header():IParent;
+		function set header(value:IParent):void;
 		
 		/**
 		 *  The component which parents the footer elements
@@ -63,5 +64,6 @@ package org.apache.royale.html.beads
 		 *  @productversion Royale 0.10.0
 		 */
 		function get footer():IParent;
+		function set footer(value:IParent):void;
 	}
 }