From d4070a94efa94a2bfc0c7def5936f8849579ec34 Mon Sep 17 00:00:00 2001 From: Farruco Sanjurjo Date: Mon, 6 Sep 2010 13:17:22 +0200 Subject: [PATCH] Fixed method call at DependencyComponentBase FEA: ItEr02S03MigracionZK5 --- ganttzk/src/main/resources/web/js/ganttz/DependencyComponent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ganttzk/src/main/resources/web/js/ganttz/DependencyComponent.js b/ganttzk/src/main/resources/web/js/ganttz/DependencyComponent.js index d6cb1535e..ca62bc906 100644 --- a/ganttzk/src/main/resources/web/js/ganttz/DependencyComponent.js +++ b/ganttzk/src/main/resources/web/js/ganttz/DependencyComponent.js @@ -12,7 +12,7 @@ ganttz.DependencyComponentBase = zk.$extends(zk.Widget,{ }, draw : function(){throw "draw method must be overwriten by extending classes"}, drawArrow_ : function(coordOrig, coordDest){ - switch(this.getDependencyType) + switch(this.getDependencyType()) { case this.$class.START_START: this._drawArrowStartStart(coordOrig, coordDest);