don't use query title for informative dialogs reporting robot actions.

This commit is contained in:
Andy2 2010-06-17 18:56:51 -07:00
parent 38ef891268
commit 12cc45617e

View file

@ -132,7 +132,7 @@ public class BoardActivity extends Activity implements UtilCtxt {
case QUERY_REQUEST_BLK: case QUERY_REQUEST_BLK:
case QUERY_INFORM_BLK: case QUERY_INFORM_BLK:
ab = new AlertDialog.Builder( this ) ab = new AlertDialog.Builder( this )
.setTitle( R.string.query_title ) .setTitle( m_dlgTitle )
.setMessage( m_dlgBytes ); .setMessage( m_dlgBytes );
lstnr = new DialogInterface.OnClickListener() { lstnr = new DialogInterface.OnClickListener() {
public void onClick( DialogInterface dialog, public void onClick( DialogInterface dialog,
@ -895,6 +895,7 @@ public class BoardActivity extends Activity implements UtilCtxt {
case UtilCtxt.QUERY_ROBOT_MOVE: case UtilCtxt.QUERY_ROBOT_MOVE:
case UtilCtxt.QUERY_ROBOT_TRADE: case UtilCtxt.QUERY_ROBOT_TRADE:
m_dlgBytes = query; m_dlgBytes = query;
m_dlgTitle = R.string.info_title;
waitBlockingDialog( QUERY_INFORM_BLK, 0 ); waitBlockingDialog( QUERY_INFORM_BLK, 0 );
result = true; result = true;
break; break;
@ -907,6 +908,7 @@ public class BoardActivity extends Activity implements UtilCtxt {
} else { } else {
m_dlgBytes = query; m_dlgBytes = query;
} }
m_dlgTitle = R.string.query_title;
result = 0 != waitBlockingDialog( QUERY_REQUEST_BLK, 0 ); result = 0 != waitBlockingDialog( QUERY_REQUEST_BLK, 0 );
break; break;
default: default: