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 891f018  DataProviderChangeNotifier: make handleDataProviderChanges 
protected
891f018 is described below

commit 891f01895202eddd871ede9e354d9b37b4c07d4b
Author: Carlos Rovira <[email protected]>
AuthorDate: Mon Dec 21 22:03:09 2020 +0100

    DataProviderChangeNotifier: make handleDataProviderChanges protected
---
 .../royale/org/apache/royale/html/beads/DataProviderChangeNotifier.as | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/DataProviderChangeNotifier.as
 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/DataProviderChangeNotifier.as
index db3e8a4..4275ffe 100644
--- 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/DataProviderChangeNotifier.as
+++ 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/DataProviderChangeNotifier.as
@@ -63,11 +63,11 @@ package org.apache.royale.html.beads
                        dataProvider = object[propertyName] as IArrayList;
                        attachEventListeners();
                }
-               
+
                /**
                 *      @royaleignorecoercion 
org.apache.royale.core.ISelectionModel
                 */
-               private function handleDataProviderChanges(event:Event):void
+               protected function handleDataProviderChanges(event:Event):void
                {
                        var selectionModel:ISelectionModel = 
_strand.getBeadByType(ISelectionModel) as ISelectionModel;
                        selectionModel.dispatchEvent(new 
Event("dataProviderChanged"));

Reply via email to