summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/activity/MiroGuideCategoryActivity.java
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2013-02-24 10:46:10 +0100
committerdaniel oeh <daniel.oeh@gmail.com>2013-02-24 10:46:10 +0100
commit56f199dc8c69d7e24d0e05613f9911c323cb46a6 (patch)
tree6ef20851c871d7ef4f47d5c75df0a8fb7262eb8b /src/de/danoeh/antennapod/activity/MiroGuideCategoryActivity.java
parentcca91b12b9df7c23121b4c01172863ff64d35cfe (diff)
downloadAntennaPod-56f199dc8c69d7e24d0e05613f9911c323cb46a6.zip
Added UserPreferences class, limit access to unreadItems and queue
Diffstat (limited to 'src/de/danoeh/antennapod/activity/MiroGuideCategoryActivity.java')
-rw-r--r--src/de/danoeh/antennapod/activity/MiroGuideCategoryActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/de/danoeh/antennapod/activity/MiroGuideCategoryActivity.java b/src/de/danoeh/antennapod/activity/MiroGuideCategoryActivity.java
index 7a765a893..bb50944cc 100644
--- a/src/de/danoeh/antennapod/activity/MiroGuideCategoryActivity.java
+++ b/src/de/danoeh/antennapod/activity/MiroGuideCategoryActivity.java
@@ -12,9 +12,9 @@ import com.actionbarsherlock.view.Menu;
import com.actionbarsherlock.view.MenuItem;
import com.viewpagerindicator.TabPageIndicator;
-import de.danoeh.antennapod.PodcastApp;
import de.danoeh.antennapod.R;
import de.danoeh.antennapod.fragment.MiroGuideChannellistFragment;
+import de.danoeh.antennapod.preferences.UserPreferences;
/**
* Shows channels of a category sorted by different criteria in lists. The
@@ -34,7 +34,7 @@ public class MiroGuideCategoryActivity extends SherlockFragmentActivity {
@Override
protected void onCreate(Bundle arg0) {
- setTheme(PodcastApp.getThemeResourceId());
+ setTheme(UserPreferences.getTheme());
super.onCreate(arg0);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
setContentView(R.layout.miroguide_category);