summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-08-04 13:27:15 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-08-04 13:27:15 +0200
commita05470300d0cba400aa58e5eddd9db3112ccf38e (patch)
treedab333f0d0a881e3e71bdc9687123c31ded8a0ae /src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java
parentb91a04fc8c7289e7586a9f02ddcc81c23bb8f2de (diff)
downloadAntennaPod-a05470300d0cba400aa58e5eddd9db3112ccf38e.zip
Renamed MiroChannel and MiroItem to MiroGuideChannel and MiroGuideItem
Diffstat (limited to 'src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java')
-rw-r--r--src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java b/src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java
index 3275ea9d1..872f7533a 100644
--- a/src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java
+++ b/src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java
@@ -11,19 +11,19 @@ import android.widget.ImageView;
import android.widget.TextView;
import de.danoeh.antennapod.R;
import de.danoeh.antennapod.asynctask.FeedImageLoader;
-import de.danoeh.antennapod.miroguide.model.MiroChannel;
+import de.danoeh.antennapod.miroguide.model.MiroGuideChannel;
-public class MiroGuideChannelListAdapter extends ArrayAdapter<MiroChannel> {
+public class MiroGuideChannelListAdapter extends ArrayAdapter<MiroGuideChannel> {
public MiroGuideChannelListAdapter(Context context, int textViewResourceId,
- List<MiroChannel> objects) {
+ List<MiroGuideChannel> objects) {
super(context, textViewResourceId, objects);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
Holder holder;
- MiroChannel channel = getItem(position);
+ MiroGuideChannel channel = getItem(position);
// Inflate Layout
if (convertView == null) {