diff options
author | Rafal Szczesniak <mimir@samba.org> | 2007-04-18 22:16:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:51:06 -0500 |
commit | c8151033bf5ef8125495dccf6900dac8d82057bb (patch) | |
tree | 51b5c26d89a213b5aa1260ab15b38c6d5c65299b /webapps/swat/source/class | |
parent | a60ab76694edeb79dcd6e8bf1b381a46ff8d54ee (diff) | |
download | samba-c8151033bf5ef8125495dccf6900dac8d82057bb.tar.gz samba-c8151033bf5ef8125495dccf6900dac8d82057bb.tar.bz2 samba-c8151033bf5ef8125495dccf6900dac8d82057bb.zip |
r22346: Fix small mistake - after sending rpc request we should go to await
rpc result state instead of idle.
rafal
(This used to be commit 00098b6d554d54c5a13b5a58a8b0372239c4c985)
Diffstat (limited to 'webapps/swat/source/class')
-rw-r--r-- | webapps/swat/source/class/swat/module/netmgr/Fsm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webapps/swat/source/class/swat/module/netmgr/Fsm.js b/webapps/swat/source/class/swat/module/netmgr/Fsm.js index 56cc244912..70f84904ef 100644 --- a/webapps/swat/source/class/swat/module/netmgr/Fsm.js +++ b/webapps/swat/source/class/swat/module/netmgr/Fsm.js @@ -120,7 +120,7 @@ qx.Proto.buildFsm = function(module) var trans = new qx.util.fsm.Transition( "Transition_Idle_to_Idle_via_tree_selection_changed", { - "nextState" : "State_Idle", + "nextState" : "State_AwaitRpcResult", "ontransition" : function(fsm, event) { |