add varargs option to another showConfirmThen variant

This commit is contained in:
Eric House 2013-10-23 07:55:59 -07:00
parent 6759a5af95
commit 76bbdafadd

View file

@ -128,9 +128,10 @@ public class XWExpandableListActivity extends ExpandableListActivity
m_delegate.showConfirmThen( msg, posButton, action, params );
}
protected void showConfirmThen( int msg, int posButton, int action )
protected void showConfirmThen( int msg, int posButton, int action,
Object... params )
{
m_delegate.showConfirmThen( getString(msg), posButton, action );
m_delegate.showConfirmThen( getString(msg), posButton, action, params );
}
// DlgDelegate.DlgClickNotify interface