mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
add varargs option to another showConfirmThen variant
This commit is contained in:
parent
6759a5af95
commit
76bbdafadd
1 changed files with 3 additions and 2 deletions
|
@ -128,9 +128,10 @@ public class XWExpandableListActivity extends ExpandableListActivity
|
||||||
m_delegate.showConfirmThen( msg, posButton, action, params );
|
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
|
// DlgDelegate.DlgClickNotify interface
|
||||||
|
|
Loading…
Reference in a new issue