org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/Separator.js
changeset 102 30e0796f3ebb
parent 73 c56c874eef47
child 210 0f7abfd6ae62
--- 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");
-}
+};