summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/activity/DownloadActivity.java
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-17 16:47:26 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-17 16:47:26 +0200
commitc41a61752f89a3430548b271b6c463decffe5815 (patch)
tree4f850572586d7f4fb55d04d31978fe9d1e8a5634 /src/de/podfetcher/activity/DownloadActivity.java
parent51a5902fd95bf86ee57c47547920df62ba9dbf42 (diff)
downloadAntennaPod-c41a61752f89a3430548b271b6c463decffe5815.zip
Moved DownloadStatus class into separate file
Diffstat (limited to 'src/de/podfetcher/activity/DownloadActivity.java')
-rw-r--r--src/de/podfetcher/activity/DownloadActivity.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/de/podfetcher/activity/DownloadActivity.java b/src/de/podfetcher/activity/DownloadActivity.java
index 0da47053a..0b22ce561 100644
--- a/src/de/podfetcher/activity/DownloadActivity.java
+++ b/src/de/podfetcher/activity/DownloadActivity.java
@@ -4,6 +4,7 @@ package de.podfetcher.activity;
import de.podfetcher.storage.DownloadRequester;
import de.podfetcher.adapter.DownloadlistAdapter;
import de.podfetcher.service.DownloadObserver;
+import de.podfetcher.service.DownloadStatus;
import de.podfetcher.feed.FeedMedia;
import de.podfetcher.feed.FeedFile;
import com.actionbarsherlock.app.SherlockListActivity;
@@ -36,7 +37,7 @@ public class DownloadActivity extends SherlockListActivity {
private final DownloadObserver observer = new DownloadObserver(this) {
@Override
- protected void onProgressUpdate(DownloadObserver.DownloadStatus... values) {
+ protected void onProgressUpdate(DownloadStatus... values) {
if (dla != null) {
dla.notifyDataSetChanged();
} else {