You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2014/10/18 01:45:53 UTC

[7/7] git commit: [flex-asjs] [refs/heads/develop] - Fix typo

Fix typo


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

Branch: refs/heads/develop
Commit: efa544f09fb7d1c5716317c3889cfe60623bd2ab
Parents: e14233b
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Fri Oct 17 16:31:31 2014 -0700
Committer: OmPrakash Muppirala <bi...@gmail.com>
Committed: Fri Oct 17 16:31:31 2014 -0700

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


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/efa544f0/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
index 550c294..3d09161 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
@@ -124,7 +124,7 @@ org.apache.flex.core.graphics.GraphicShape.prototype.set_stroke = function(value
 org.apache.flex.core.graphics.GraphicShape.prototype.addedToParent = function() {
   this.draw();
   var bbox = this.element.getBBox();
-  this.resize(this.get_x(), this.y(), bbox);
+  this.resize(this.get_x(), this.get_y(), bbox);
 };