summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/adapter
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-08-02 23:00:01 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-08-02 23:00:01 +0200
commit941154704b8d6576d2868ab216a906469e841ecb (patch)
tree48bbe06912da8aa10f0ce7fa7ffb47eaf53423f1 /src/de/danoeh/antennapod/adapter
parentc084d172de38b46f510f1dd500e9dfd659d57982 (diff)
downloadAntennaPod-941154704b8d6576d2868ab216a906469e841ecb.zip
Replaced 'miro' in filenames with 'miroguide'
Diffstat (limited to 'src/de/danoeh/antennapod/adapter')
-rw-r--r--src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java (renamed from src/de/danoeh/antennapod/adapter/MiroChannellistAdapter.java)6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/de/danoeh/antennapod/adapter/MiroChannellistAdapter.java b/src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java
index b07e2445d..1249b7905 100644
--- a/src/de/danoeh/antennapod/adapter/MiroChannellistAdapter.java
+++ b/src/de/danoeh/antennapod/adapter/MiroGuideChannelListAdapter.java
@@ -12,9 +12,9 @@ import android.widget.TextView;
import de.danoeh.antennapod.R;
import de.danoeh.antennapod.miroguide.model.MiroChannel;
-public class MiroChannellistAdapter extends ArrayAdapter<MiroChannel> {
+public class MiroGuideChannelListAdapter extends ArrayAdapter<MiroChannel> {
- public MiroChannellistAdapter(Context context, int textViewResourceId,
+ public MiroGuideChannelListAdapter(Context context, int textViewResourceId,
List<MiroChannel> objects) {
super(context, textViewResourceId, objects);
}
@@ -30,7 +30,7 @@ public class MiroChannellistAdapter extends ArrayAdapter<MiroChannel> {
LayoutInflater inflater = (LayoutInflater) getContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
- convertView = inflater.inflate(R.layout.miro_channellist_item, null);
+ convertView = inflater.inflate(R.layout.miroguide_channellist_item, null);
holder.title = (TextView) convertView.findViewById(R.id.txtvTitle);
holder.cover = (ImageView) convertView
.findViewById(R.id.imgvChannelimage);