diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DelegateBase.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DelegateBase.java index f3e3985c8..a6a41e3be 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DelegateBase.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DelegateBase.java @@ -548,7 +548,7 @@ public class DelegateBase implements DlgClickNotify, protected void showOKOnlyDialogThen( String msg, Action action ) { - m_dlgDelegate.showOKOnlyDialog( msg, action ); + m_dlgDelegate.showOKOnlyDialogThen( msg, action ); } protected void startProgress( int titleID, int msgID ) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DlgDelegate.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DlgDelegate.java index ad294fb3b..4ec9cf98c 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DlgDelegate.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DlgDelegate.java @@ -385,10 +385,10 @@ public class DlgDelegate { public void showOKOnlyDialog( String msg ) { - showOKOnlyDialog( msg, Action.SKIP_CALLBACK ); + showOKOnlyDialogThen( msg, Action.SKIP_CALLBACK ); } - public void showOKOnlyDialog( String msg, Action action ) + public void showOKOnlyDialogThen( String msg, Action action ) { // Assert.assertNull( m_dlgStates ); DlgState state = new DlgState( DlgID.DIALOG_OKONLY, msg, action ); @@ -398,7 +398,7 @@ public class DlgDelegate { public void showOKOnlyDialog( int msgID ) { - showOKOnlyDialog( getString( msgID ), Action.SKIP_CALLBACK ); + showOKOnlyDialogThen( getString( msgID ), Action.SKIP_CALLBACK ); } public void showDictGoneFinish() @@ -569,7 +569,7 @@ public class DlgDelegate { post( new Runnable() { public void run() { if ( asDlg ) { - showOKOnlyDialog( fmsg, Action.SKIP_CALLBACK ); + showOKOnlyDialog( fmsg ); } else { DbgUtils.showf( m_activity, fmsg ); }