diff -r 15f3b303bbb1 -r 30e0796f3ebb org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/Separator.js --- a/org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/Separator.js Fri Feb 05 09:22:26 2010 -0800 +++ b/org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/Separator.js Fri Feb 05 11:54:28 2010 -0800 @@ -92,17 +92,17 @@ // update style this.updateStyleFromState(); -} +}; // Returns the enabled state for the control. Separator.prototype.isEnabled = function() { return true; -} +}; // Returns the focusable state for the control. Separator.prototype.isFocusable = function() { return false; -} +}; // Updates the style of the control to reflects the state of the control. Separator.prototype.updateStyleFromState = function() { @@ -116,4 +116,4 @@ this.setClassName(this.tableLeftCellElement, "SeparatorLeftCell"); this.setClassName(this.tableCenterCellElement, "SeparatorCenterCell"); this.setClassName(this.tableRightCellElement, "SeparatorRightCell"); -} +};