This is an automated email from the ASF dual-hosted git repository.
hiedra 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 c0e0bdf TDJ: Rename bead TriStateCheckBoxStatesValue to
TriStateCheckBoxState.
c0e0bdf is described below
commit c0e0bdfac51d32cc7f820fb15a19dedf37d88597
Author: Maria José Esteve <[email protected]>
AuthorDate: Wed Dec 22 22:36:24 2021 +0100
TDJ: Rename bead TriStateCheckBoxStatesValue to TriStateCheckBoxState.
---
.../jewel/TourDeJewel/src/main/royale/TriStateCheckBoxPlayGround.mxml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/examples/jewel/TourDeJewel/src/main/royale/TriStateCheckBoxPlayGround.mxml
b/examples/jewel/TourDeJewel/src/main/royale/TriStateCheckBoxPlayGround.mxml
index 7cfca5b..bb23883 100644
--- a/examples/jewel/TourDeJewel/src/main/royale/TriStateCheckBoxPlayGround.mxml
+++ b/examples/jewel/TourDeJewel/src/main/royale/TriStateCheckBoxPlayGround.mxml
@@ -221,7 +221,7 @@ limitations under the License.
</j:TriStateCheckBox>
<j:Label multiline="true">
- <j:html><![CDATA[<p>The
<strong>TriStateCheckBoxStatesValues</strong> bead allows to set a custom value
for each state. <p>By default, the "unchecked" state is assigned a value of
"0", the "checked" state a value of "1" and the "indeterminate" state a value
of "-1".</p>]]></j:html>
+ <j:html><![CDATA[<p>The
<strong>TriStateCheckBoxState</strong> bead allows to set a custom value for
each state. <p>By default, the "unchecked" state is assigned a value of "0",
the "checked" state a value of "1" and the "indeterminate" state a value of
"-1".</p>]]></j:html>
</j:Label>
<j:HGroup percentWidth="100"
itemsVerticalAlign="itemsCenter" gap="5">
@@ -232,7 +232,7 @@ limitations under the License.
<j:Label text="Custom: " width="100"/>
<j:TriStateCheckBox localId="trCh1"
text="{trCh1.state}" >
<j:beads>
- <j:TriStateCheckBoxStatesValues
checkedValue="valChecked" uncheckedValue="valUnchecked"
indeterminateValue="valIndeterminate"/>
+ <j:TriStateCheckBoxState
checkedValue="valChecked" uncheckedValue="valUnchecked"
indeterminateValue="valIndeterminate"/>
</j:beads>
</j:TriStateCheckBox>
</j:HGroup>