mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-14 08:01:38 +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 ) {
|
if ( socketState == CE_IPST_CONNECTED ) {
|
||||||
switch( relayState ) {
|
switch( relayState ) {
|
||||||
case COMMS_RELAYSTATE_UNCONNECTED: ch = L'x'; break;
|
case COMMS_RELAYSTATE_UNCONNECTED: ch = L'D'; break;
|
||||||
case COMMS_RELAYSTATE_CONNECT_PENDING: ch = L'c'; break;
|
case COMMS_RELAYSTATE_CONNECT_PENDING: ch = L'C'; break;
|
||||||
case COMMS_RELAYSTATE_CONNECTED: ch = L'C'; break;
|
case COMMS_RELAYSTATE_CONNECTED: ch = L'B'; break;
|
||||||
case COMMS_RELAYSTATE_ALLCONNECTED: ch = L'A'; break;
|
case COMMS_RELAYSTATE_ALLCONNECTED: ch = L'A'; break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue