org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/View.js
changeset 102 30e0796f3ebb
parent 73 c56c874eef47
child 210 0f7abfd6ae62
--- a/org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/View.js	Fri Feb 05 09:22:26 2010 -0800
+++ b/org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/View.js	Fri Feb 05 11:54:28 2010 -0800
@@ -62,12 +62,12 @@
     
     // call superclass initializer
     UIElement.prototype.init.call(this, id);
-}
+};
 
 // Returns the currently focused control; null if none.
 View.prototype.getFocusedControl = function() {
     return this.focusedControl;
-}
+};
 
 // Used to notify the view that the focused control has changed.
 View.prototype.focusedControlChanged = function(control) {
@@ -75,16 +75,16 @@
     this.focusedControl = control;
     // notify event listeners
     this.fireEvent(this.createEvent("FocusedControlChanged", this.focusedControl));
-}
+};
 
 // Attempts to focus the first focusable control.
 // Override in subclasses as required.
 View.prototype.focusFirstControl = function() {
     uiLogger.debug("View.focusFirstControl()");
-}
+};
 
 // Attempts to reset all control focus states.
 // Override in subclasses as required.
 View.prototype.resetControlFocusStates = function() {
     uiLogger.debug("View.resetControlFocusStates()");
-}
+};