yet another version of showConfirmThen()

This commit is contained in:
Eric House 2014-03-24 21:08:06 -07:00
parent ef381f1d71
commit 5ff5074180

View file

@ -275,6 +275,13 @@ public class DlgDelegate {
showConfirmThen( msg, posButton, action, null );
}
public void showConfirmThen( int msg, int posButton, Action action,
Object[] params )
{
showConfirmThen( m_activity.getString( msg ), posButton, action,
params );
}
public void showConfirmThen( String msg, int posButton, Action action,
Object[] params )
{