diff options
author | Derrell Lipman <derrell@samba.org> | 2007-02-11 22:59:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:45:00 -0500 |
commit | 6ac408eef8af8e6feb4309708cf071bfe357f98f (patch) | |
tree | 03cea138bca4c54221944e5f95d3d810d712f7c1 /webapps/qooxdoo-0.6.5-sdk/frontend | |
parent | cb89806824b0e317ac1a2f324d699b5fdd207ec7 (diff) | |
download | samba-6ac408eef8af8e6feb4309708cf071bfe357f98f.tar.gz samba-6ac408eef8af8e6feb4309708cf071bfe357f98f.tar.bz2 samba-6ac408eef8af8e6feb4309708cf071bfe357f98f.zip |
r21287: Improve user feedback. Cursor now changes to stopwatch during RPC and module loading.
(This used to be commit a6fc47eff3aa87b1dfe4eaf25719b51b24c88425)
Diffstat (limited to 'webapps/qooxdoo-0.6.5-sdk/frontend')
-rw-r--r-- | webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/util/fsm/FiniteStateMachine.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 |