mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-13 08:01:33 +01:00
use D-A instead of arbitrary letters for conn state -- which will be icons soon anyway.
This commit is contained in:
parent
048dccebae
commit
cfad371bb6
1 changed files with 3 additions and 3 deletions
|
@ -1639,9 +1639,9 @@ ceStateChar( const CEAppGlobals* globals )
|
|||
|
||||
if ( socketState == CE_IPST_CONNECTED ) {
|
||||
switch( relayState ) {
|
||||
case COMMS_RELAYSTATE_UNCONNECTED: ch = L'x'; break;
|
||||
case COMMS_RELAYSTATE_CONNECT_PENDING: ch = L'c'; break;
|
||||
case COMMS_RELAYSTATE_CONNECTED: ch = L'C'; break;
|
||||
case COMMS_RELAYSTATE_UNCONNECTED: ch = L'D'; break;
|
||||
case COMMS_RELAYSTATE_CONNECT_PENDING: ch = L'C'; break;
|
||||
case COMMS_RELAYSTATE_CONNECTED: ch = L'B'; break;
|
||||
case COMMS_RELAYSTATE_ALLCONNECTED: ch = L'A'; break;
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue