You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pe...@apache.org on 2014/12/01 21:43:54 UTC

git commit: [flex-asjs] [refs/heads/develop] - Corrected improper use of constructor base function.

Repository: flex-asjs
Updated Branches:
  refs/heads/develop fd791c531 -> 1b2a501a1


Corrected improper use of constructor base function.


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

Branch: refs/heads/develop
Commit: 1b2a501a17f6fc7b5ee85e3659f276e78a101dca
Parents: fd791c5
Author: Peter Ent <pe...@apache.org>
Authored: Mon Dec 1 15:43:49 2014 -0500
Committer: Peter Ent <pe...@apache.org>
Committed: Mon Dec 1 15:43:49 2014 -0500

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1b2a501a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js
index 2aaf7f2..854b055 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js
@@ -33,7 +33,7 @@ goog.require('org.apache.flex.html.List');
  */
 org.apache.flex.charts.core.ChartBase =
     function() {
-  org.apache.flex.charts.core.ChartBase.base(this);
+  org.apache.flex.charts.core.ChartBase.base(this, 'constructor');
   this.className = 'ChartBase';
 };
 goog.inherits(