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 02585d15b4 Allow to compile
02585d15b4 is described below
commit 02585d15b45c96922274072586e0ebc3d4a8afd1
Author: Harbs <[email protected]>
AuthorDate: Fri Feb 27 02:04:35 2026 +0200
Allow to compile
---
.../royale/style/stylebeads/states/combiners/ParentCombiner.as | 8 +++++---
.../royale/style/stylebeads/states/combiners/SiblingCombiner.as | 8 +++++---
2 files changed, 10 insertions(+), 6 deletions(-)
diff --git
a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/states/combiners/ParentCombiner.as
b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/states/combiners/ParentCombiner.as
index a4bb2fbf03..53ba468ae3 100644
---
a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/states/combiners/ParentCombiner.as
+++
b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/states/combiners/ParentCombiner.as
@@ -16,11 +16,13 @@
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
-package org.apache.royale.style.stylebeads.states
+package org.apache.royale.style.stylebeads.states.combiners
{
- public class HoverState extends StyleStateBase
+ import org.apache.royale.style.stylebeads.states.StyleStateBase;
+
+ public class ParentCombiner extends StyleStateBase
{
- public function HoverState()
+ public function ParentCombiner()
{
super();
}
diff --git
a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/states/combiners/SiblingCombiner.as
b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/states/combiners/SiblingCombiner.as
index a4bb2fbf03..334d92e024 100644
---
a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/states/combiners/SiblingCombiner.as
+++
b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/states/combiners/SiblingCombiner.as
@@ -16,11 +16,13 @@
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
-package org.apache.royale.style.stylebeads.states
+package org.apache.royale.style.stylebeads.states.combiners
{
- public class HoverState extends StyleStateBase
+ import org.apache.royale.style.stylebeads.states.StyleStateBase;
+
+ public class SiblingCombiner extends StyleStateBase
{
- public function HoverState()
+ public function SiblingCombiner()
{
super();
}