diff options
-rw-r--r-- | vdrmanager/src/de/bjusystems/vdrmanager/app/VdrManagerApp.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vdrmanager/src/de/bjusystems/vdrmanager/app/VdrManagerApp.java b/vdrmanager/src/de/bjusystems/vdrmanager/app/VdrManagerApp.java index 6f19f36..7029a53 100644 --- a/vdrmanager/src/de/bjusystems/vdrmanager/app/VdrManagerApp.java +++ b/vdrmanager/src/de/bjusystems/vdrmanager/app/VdrManagerApp.java @@ -6,9 +6,9 @@ import java.util.List; import android.app.Activity; import android.app.Application; import de.bjusystems.vdrmanager.data.Channel; -import de.bjusystems.vdrmanager.data.Epg; import de.bjusystems.vdrmanager.data.EpgSearchParams; import de.bjusystems.vdrmanager.data.Event; +import de.bjusystems.vdrmanager.data.Preferences; import de.bjusystems.vdrmanager.data.Timer; public class VdrManagerApp extends Application { @@ -42,8 +42,10 @@ public class VdrManagerApp extends Application { @Override public void onCreate() { super.onCreate(); + Preferences.loadPreferences(this); } + public void clear() { this.currentEvent = null; this.currentTimer = null; |