mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-26 01:28:50 -05:00
rename a paremeter to better reflect its use: nextWidget->showWidget
This commit is contained in:
parent
553625b72b
commit
fb223ea61d
@ -761,7 +761,7 @@ public class MessageList
|
||||
}
|
||||
|
||||
|
||||
private void setVisibleWidgetsForListItem(View v, int nextWidget)
|
||||
private void setVisibleWidgetsForListItem(View v, int showWidget)
|
||||
{
|
||||
|
||||
Button flagged = (Button) v.findViewById(R.id.flagged);
|
||||
@ -772,7 +772,7 @@ public class MessageList
|
||||
return;
|
||||
}
|
||||
|
||||
if (nextWidget == WIDGET_NONE)
|
||||
if (showWidget == WIDGET_NONE)
|
||||
{
|
||||
v.findViewById(R.id.widgets).setVisibility(View.GONE);
|
||||
return;
|
||||
@ -784,7 +784,7 @@ public class MessageList
|
||||
|
||||
|
||||
|
||||
if (nextWidget == WIDGET_MULTISELECT)
|
||||
if (showWidget == WIDGET_MULTISELECT)
|
||||
{
|
||||
flagged.setVisibility(View.GONE);
|
||||
selected.setVisibility(View.VISIBLE);
|
||||
|
Loading…
Reference in New Issue
Block a user