Change state icon even when not doing work to get it to show up (unconnected) earlier.

This commit is contained in:
ehouse 2007-12-05 06:26:21 +00:00
parent 0d5543b28f
commit e4b01a514b

View file

@ -288,7 +288,7 @@ palm_bt_doWork( PalmAppGlobals* globals, BtCbEvtProc proc, BtUIState* btUIStateP
if ( haveWork ) { if ( haveWork ) {
pbt_do_work( btStuff, proc ); pbt_do_work( btStuff, proc );
} }
if ( haveWork && !!btStuff && !!btUIStateP ) { if ( !!btStuff && !!btUIStateP ) {
BtUIState btUIState = BTUI_NONE; /* default */ BtUIState btUIState = BTUI_NONE; /* default */
switch( GET_STATE(btStuff) ) { switch( GET_STATE(btStuff) ) {
case PBTST_NONE: case PBTST_NONE:
@ -308,7 +308,7 @@ palm_bt_doWork( PalmAppGlobals* globals, BtCbEvtProc proc, BtUIState* btUIStateP
BTUI_SERVING : BTUI_CONNECTED; BTUI_SERVING : BTUI_CONNECTED;
break; break;
default: default:
XP_ASSERT(0); /* Don't add new stated without handling here */ XP_ASSERT(0); /* Don't add new states without handling here */
break; break;
} }
*btUIStateP = btUIState; *btUIStateP = btUIState;