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
protected void onStop() {
protected void onPause() {
super.onPause();
EventDistributor.getInstance().unregister(contentUpdate);
}
@Override
protected void onDestroy() {
super.onDestroy();
protected void onStop() {
super.onStop();
FeedManager.getInstance().autodownloadUndownloadedItems(
getApplicationContext());
}
@Override