From 6ac408eef8af8e6feb4309708cf071bfe357f98f Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Sun, 11 Feb 2007 22:59:02 +0000 Subject: r21287: Improve user feedback. Cursor now changes to stopwatch during RPC and module loading. (This used to be commit a6fc47eff3aa87b1dfe4eaf25719b51b24c88425) --- .../frontend/framework/source/class/qx/util/fsm/FiniteStateMachine.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webapps/qooxdoo-0.6.5-sdk') diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/util/fsm/FiniteStateMachine.js b/webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/util/fsm/FiniteStateMachine.js index d91ab45858..0b42bc24be 100644 --- a/webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/util/fsm/FiniteStateMachine.js +++ b/webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/util/fsm/FiniteStateMachine.js @@ -178,7 +178,7 @@ qx.Proto.addState = function(state) // Ensure that the state name doesn't already exist if (stateName in this._states) { - throw new Error("State " + state + " already exists"); + throw new Error("State " + stateName + " already exists"); } // Add the new state object to the finite state machine -- cgit