You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pi...@apache.org on 2017/03/04 13:24:56 UTC

git commit: [flex-asjs] [refs/heads/develop] - FLEX-34842 - Move PanelWithControlBarView outside SWF only compiling - Add PanelWithControlBarView to basic-manifest.xml

Repository: flex-asjs
Updated Branches:
  refs/heads/develop 49407849e -> cd8e98318


FLEX-34842 - Move PanelWithControlBarView outside SWF only compiling
- Add PanelWithControlBarView to basic-manifest.xml


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/cd8e9831
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/cd8e9831
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/cd8e9831

Branch: refs/heads/develop
Commit: cd8e983184038acb3e3f419fab9e4f2dc9cd8c33
Parents: 4940784
Author: piotrz <pi...@apache.org>
Authored: Sat Mar 4 14:24:51 2017 +0100
Committer: piotrz <pi...@apache.org>
Committed: Sat Mar 4 14:24:51 2017 +0100

----------------------------------------------------------------------
 frameworks/projects/Basic/src/main/flex/BasicClasses.as            | 2 +-
 .../flex/org/apache/flex/html/beads/PanelWithControlBarView.as     | 2 --
 frameworks/projects/Basic/src/main/resources/basic-manifest.xml    | 1 +
 frameworks/projects/HTML/src/main/flex/HTMLClasses.as              | 2 +-
 .../flex/org/apache/flex/html/beads/PanelWithControlBarView.as     | 2 --
 frameworks/projects/HTML/src/main/resources/basic-manifest.xml     | 1 +
 6 files changed, 4 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cd8e9831/frameworks/projects/Basic/src/main/flex/BasicClasses.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Basic/src/main/flex/BasicClasses.as b/frameworks/projects/Basic/src/main/flex/BasicClasses.as
index 69fb902..a81838b 100644
--- a/frameworks/projects/Basic/src/main/flex/BasicClasses.as
+++ b/frameworks/projects/Basic/src/main/flex/BasicClasses.as
@@ -63,9 +63,9 @@ internal class BasicClasses
 	    import org.apache.flex.html.beads.NumericStepperView; NumericStepperView;
 	}
     import org.apache.flex.html.beads.PanelView; PanelView;
+    import org.apache.flex.html.beads.PanelWithControlBarView; PanelWithControlBarView;
 	COMPILE::SWF
 	{
-	    import org.apache.flex.html.beads.PanelWithControlBarView; PanelWithControlBarView;
 		import org.apache.flex.html.beads.RadioButtonView; RadioButtonView;
 		import org.apache.flex.html.beads.VScrollBarView; VScrollBarView;
 		import org.apache.flex.html.beads.HScrollBarView; HScrollBarView;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cd8e9831/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/PanelWithControlBarView.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/PanelWithControlBarView.as b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/PanelWithControlBarView.as
index 8dfcd42..cfbbae8 100644
--- a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/PanelWithControlBarView.as
+++ b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/PanelWithControlBarView.as
@@ -18,8 +18,6 @@
 ////////////////////////////////////////////////////////////////////////////////
 package org.apache.flex.html.beads
 {
-	import flash.display.Sprite;
-	
 	import org.apache.flex.core.IBeadView;
 	import org.apache.flex.core.IContentViewHost;
 	import org.apache.flex.core.ILayoutChild;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cd8e9831/frameworks/projects/Basic/src/main/resources/basic-manifest.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Basic/src/main/resources/basic-manifest.xml b/frameworks/projects/Basic/src/main/resources/basic-manifest.xml
index b187bad..0799491 100644
--- a/frameworks/projects/Basic/src/main/resources/basic-manifest.xml
+++ b/frameworks/projects/Basic/src/main/resources/basic-manifest.xml
@@ -49,6 +49,7 @@
     <component id="PanelView" class="org.apache.flex.html.beads.PanelView"/>
     <component id="ImageView" class="org.apache.flex.html.beads.ImageView"/>
     <component id="PanelWithControlBar" class="org.apache.flex.html.PanelWithControlBar"/>
+    <component id="PanelWithControlBarView" class="org.apache.flex.html.beads.PanelWithControlBarView"/>
     <component id="ControlBar" class="org.apache.flex.html.ControlBar"/>
     <component id="RangeStepper" class="org.apache.flex.html.RangeStepper" />
     <component id="TitleBar" class="org.apache.flex.html.TitleBar"/>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cd8e9831/frameworks/projects/HTML/src/main/flex/HTMLClasses.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/src/main/flex/HTMLClasses.as b/frameworks/projects/HTML/src/main/flex/HTMLClasses.as
index 4809e43..bfe204b 100644
--- a/frameworks/projects/HTML/src/main/flex/HTMLClasses.as
+++ b/frameworks/projects/HTML/src/main/flex/HTMLClasses.as
@@ -68,9 +68,9 @@ internal class HTMLClasses
 	import org.apache.flex.html.beads.PanelView; PanelView;
 	import org.apache.flex.html.beads.AccordionItemRendererView; AccordionItemRendererView;
 	import org.apache.flex.html.beads.SliderView; SliderView;
+    import org.apache.flex.html.beads.PanelWithControlBarView; PanelWithControlBarView;
 	COMPILE::SWF
 	{
-	    import org.apache.flex.html.beads.PanelWithControlBarView; PanelWithControlBarView;
 		import org.apache.flex.html.beads.RadioButtonView; RadioButtonView;
 		import org.apache.flex.html.beads.VScrollBarView; VScrollBarView;
 		import org.apache.flex.html.beads.HScrollBarView; HScrollBarView;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cd8e9831/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/PanelWithControlBarView.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/PanelWithControlBarView.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/PanelWithControlBarView.as
index 5fe433d..6e2b01a 100644
--- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/PanelWithControlBarView.as
+++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/PanelWithControlBarView.as
@@ -18,8 +18,6 @@
 ////////////////////////////////////////////////////////////////////////////////
 package org.apache.flex.html.beads
 {
-	import flash.display.Sprite;
-	
 	import org.apache.flex.core.IBeadView;
 	import org.apache.flex.core.IContentViewHost;
 	import org.apache.flex.core.ILayoutChild;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cd8e9831/frameworks/projects/HTML/src/main/resources/basic-manifest.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/src/main/resources/basic-manifest.xml b/frameworks/projects/HTML/src/main/resources/basic-manifest.xml
index 0cb3f1f..4968d95 100644
--- a/frameworks/projects/HTML/src/main/resources/basic-manifest.xml
+++ b/frameworks/projects/HTML/src/main/resources/basic-manifest.xml
@@ -54,6 +54,7 @@
     <component id="PanelView" class="org.apache.flex.html.beads.PanelView"/>
     <component id="ImageView" class="org.apache.flex.html.beads.ImageView"/>
     <component id="PanelWithControlBar" class="org.apache.flex.html.PanelWithControlBar"/>
+    <component id="PanelWithControlBarView" class="org.apache.flex.html.beads.PanelWithControlBarView"/>
     <component id="ControlBar" class="org.apache.flex.html.ControlBar"/>
     <component id="RangeStepper" class="org.apache.flex.html.RangeStepper" />
     <component id="TitleBar" class="org.apache.flex.html.TitleBar"/>