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

Harbs 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 8b93b1f8fd inherit from ILabeledData
8b93b1f8fd is described below

commit 8b93b1f8fdf6192d464c8629c12927041cd8405d
Author: Harbs <[email protected]>
AuthorDate: Thu Jun 11 17:28:22 2026 +0300

    inherit from ILabeledData
---
 .../Style/src/main/royale/org/apache/royale/style/data/IListData.as  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git 
a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/data/IListData.as
 
b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/data/IListData.as
index 87d886c401..f0f504a049 100644
--- 
a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/data/IListData.as
+++ 
b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/data/IListData.as
@@ -18,11 +18,12 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.style.data
 {
-  public interface IListData extends IDataItem
+  import org.apache.royale.core.ILabeledData;
+
+  public interface IListData extends IDataItem, ILabeledData
   {
     function get text():String;
     function set text(value:String):void;
-    function get label():String;
     function get icon():String;
     function set icon(value:String):void;
 

Reply via email to