Used wrong methods

This commit is contained in:
daniel oeh 2013-04-20 12:49:06 +02:00
parent 6fa2fe6c7d
commit f781bba3f3
1 changed files with 3 additions and 4 deletions

View File

@ -53,17 +53,16 @@ public class OrganizeQueueActivity extends SherlockListActivity implements
} }
@Override @Override
protected void onStop() { protected void onPause() {
super.onPause(); super.onPause();
EventDistributor.getInstance().unregister(contentUpdate); EventDistributor.getInstance().unregister(contentUpdate);
} }
@Override @Override
protected void onDestroy() { protected void onStop() {
super.onDestroy(); super.onStop();
FeedManager.getInstance().autodownloadUndownloadedItems( FeedManager.getInstance().autodownloadUndownloadedItems(
getApplicationContext()); getApplicationContext());
} }
@Override @Override