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 694b6ee  examples: change Slider to HSlider references
694b6ee is described below

commit 694b6ee26fef75f27e89fd53b87d1dffbd54e942
Author: Carlos Rovira <carlosrov...@apache.org>
AuthorDate: Thu Nov 14 09:48:42 2019 +0100

    examples: change Slider to HSlider references
---
 examples/blog/BE0003_Using_Jewel_Slider_Control/README.txt          | 4 ++--
 examples/blog/BE0003_Using_Jewel_Slider_Control/pom.xml             | 2 +-
 .../src/main/royale/BE0003_Using_Jewel_Slider_Control.mxml          | 6 +++---
 .../src/main/royale/models/ListsModel.as                            | 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/examples/blog/BE0003_Using_Jewel_Slider_Control/README.txt 
b/examples/blog/BE0003_Using_Jewel_Slider_Control/README.txt
index 56f3f90..18ea58d 100644
--- a/examples/blog/BE0003_Using_Jewel_Slider_Control/README.txt
+++ b/examples/blog/BE0003_Using_Jewel_Slider_Control/README.txt
@@ -19,9 +19,9 @@
 
 DESCRIPTION
 
-Using the Jewel Slider Control
+Using the Jewel HSlider Control
 
-See the basic use of the Jewel Slider control in a Royale application.
+See the basic use of the Jewel HSlider control in a Royale application.
 
 Source code of the code exposed in the following Apache Royale Blog Example 
post:
 
diff --git a/examples/blog/BE0003_Using_Jewel_Slider_Control/pom.xml 
b/examples/blog/BE0003_Using_Jewel_Slider_Control/pom.xml
index bf76971..730c384 100644
--- a/examples/blog/BE0003_Using_Jewel_Slider_Control/pom.xml
+++ b/examples/blog/BE0003_Using_Jewel_Slider_Control/pom.xml
@@ -30,7 +30,7 @@
   <version>0.9.7-SNAPSHOT</version>
   <packaging>swf</packaging>
 
-  <name>Apache Royale: Examples: Blog: 0003: Using Jewel Slider Control</name>
+  <name>Apache Royale: Examples: Blog: 0003: Using Jewel HSlider Control</name>
 
   <build>
     <sourceDirectory>src/main/royale</sourceDirectory>
diff --git 
a/examples/blog/BE0003_Using_Jewel_Slider_Control/src/main/royale/BE0003_Using_Jewel_Slider_Control.mxml
 
b/examples/blog/BE0003_Using_Jewel_Slider_Control/src/main/royale/BE0003_Using_Jewel_Slider_Control.mxml
index 1f0ce3c..f5f27bf 100644
--- 
a/examples/blog/BE0003_Using_Jewel_Slider_Control/src/main/royale/BE0003_Using_Jewel_Slider_Control.mxml
+++ 
b/examples/blog/BE0003_Using_Jewel_Slider_Control/src/main/royale/BE0003_Using_Jewel_Slider_Control.mxml
@@ -44,13 +44,13 @@
                 <j:VerticalLayout gap="3"/>
             </j:beads>
 
-            <j:Slider id="slider_w" width="250" value="250" minimum="100" 
maximum="500"
+            <j:HSlider id="slider_w" width="250" value="250" minimum="100" 
maximum="500"
                 valueChange="onValueChange(event)"/>
 
-            <j:Slider id="slider_h" width="250" value="80" minimum="40" 
maximum="300"
+            <j:HSlider id="slider_h" width="250" value="80" minimum="40" 
maximum="300"
                 valueChange="onValueChange(event)"/>
 
-            <j:Button id="button" text="Slider to 400x200" width="250" 
height="80" emphasis="secondary"
+            <j:Button id="button" text="HSlider to 400x200" width="250" 
height="80" emphasis="secondary"
                 click="clickHandler(event)"/>
         </j:View>
     </j:initialView>
diff --git a/examples/blog/BE0009_Using_an_Item_ 
Renderer_with_a_List/src/main/royale/models/ListsModel.as 
b/examples/blog/BE0009_Using_an_Item_ 
Renderer_with_a_List/src/main/royale/models/ListsModel.as
index e8e15ae..e723133 100644
--- a/examples/blog/BE0009_Using_an_Item_ 
Renderer_with_a_List/src/main/royale/models/ListsModel.as     
+++ b/examples/blog/BE0009_Using_an_Item_ 
Renderer_with_a_List/src/main/royale/models/ListsModel.as     
@@ -34,7 +34,7 @@ package models
             new IconListVO("Label", MaterialIconType.LABEL),
             new IconListVO("List", MaterialIconType.LIST_ALT),
             new IconListVO("RadioButton", 
MaterialIconType.RADIO_BUTTON_CHECKED),
-            new IconListVO("Slider", MaterialIconType.STORAGE),
+            new IconListVO("HSlider", MaterialIconType.STORAGE),
             new IconListVO("Text", MaterialIconType.SUBJECT),
             new IconListVO("TextInput", MaterialIconType.TEXT_FIELDS)          
  
         ]);

Reply via email to