mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-14 08:01:38 +01:00
handle new "no-connect-dead-game" error code the same as an in-play
"deleted" message: put up existing dialog offering to delete the game.
This commit is contained in:
parent
0c42da905a
commit
a975a405aa
2 changed files with 3 additions and 0 deletions
|
@ -540,6 +540,7 @@ public class BoardActivity extends XWActivity
|
|||
doToast = true;
|
||||
break;
|
||||
|
||||
case DEADGAME:
|
||||
case DELETED:
|
||||
strID = R.string.msg_dev_deleted;
|
||||
dlgID = DLG_DELETED;
|
||||
|
|
|
@ -48,6 +48,8 @@ public interface TransportProcs {
|
|||
,DUP_ROOM
|
||||
,TOO_MANY
|
||||
,DELETED
|
||||
,NORECONN
|
||||
,DEADGAME
|
||||
};
|
||||
void relayErrorProc( XWRELAY_ERROR relayErr );
|
||||
|
||||
|
|
Loading…
Reference in a new issue