indentation

This commit is contained in:
Sebastian Kaspari 2009-05-30 14:47:53 +02:00
parent 767b6ba485
commit 44f57c0cab
1 changed files with 10 additions and 10 deletions

View File

@ -94,18 +94,18 @@ public class ServerListAdapter extends SimpleCursorAdapter
if (binder.isConnected(title)) {
tvServerIcon.setCompoundDrawablesWithIntrinsicBounds(
context.getResources().getDrawable(android.R.drawable.presence_online),
null,
null,
null
);
context.getResources().getDrawable(android.R.drawable.presence_online),
null,
null,
null
);
} else {
tvServerIcon.setCompoundDrawablesWithIntrinsicBounds(
context.getResources().getDrawable(android.R.drawable.presence_offline),
null,
null,
null
);
context.getResources().getDrawable(android.R.drawable.presence_offline),
null,
null,
null
);
}
}