summaryrefslogtreecommitdiff
path: root/vdrmanager/src
diff options
context:
space:
mode:
authorlado <herrlado@gmail.com>2012-02-02 17:08:56 +0100
committerlado <herrlado@gmail.com>2012-02-02 17:08:56 +0100
commit98e99302177cdd012b05fddb508e23f5bd7d6cf3 (patch)
treebb806dcf5f92e257910315c33de7acb5b908635d /vdrmanager/src
parent501fa6eea502a89b0e7539fe96c648fc5ddaa107 (diff)
downloadvdr-manager-98e99302177cdd012b05fddb508e23f5bd7d6cf3.tar.gz
vdr-manager-98e99302177cdd012b05fddb508e23f5bd7d6cf3.tar.bz2
no need of EventFormatter
Diffstat (limited to 'vdrmanager/src')
-rw-r--r--vdrmanager/src/de/bjusystems/vdrmanager/gui/BaseTimerEditActivity.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/vdrmanager/src/de/bjusystems/vdrmanager/gui/BaseTimerEditActivity.java b/vdrmanager/src/de/bjusystems/vdrmanager/gui/BaseTimerEditActivity.java
index dea64c4..313bf1a 100644
--- a/vdrmanager/src/de/bjusystems/vdrmanager/gui/BaseTimerEditActivity.java
+++ b/vdrmanager/src/de/bjusystems/vdrmanager/gui/BaseTimerEditActivity.java
@@ -108,8 +108,8 @@ public abstract class BaseTimerEditActivity<T extends Event> extends
return;
}
- final EventFormatter formatter = new EventFormatter(item);
- menu.setHeaderTitle(formatter.getTitle());
+ //final EventFormatter formatter = new EventFormatter(item);
+ menu.setHeaderTitle(item.getTitle());
inflater.inflate(R.menu.epg_list_item_menu, menu);
Timer timer = getTimer(item);
@@ -195,6 +195,10 @@ public abstract class BaseTimerEditActivity<T extends Event> extends
//worker.schedule(task, 1000, TimeUnit.MILLISECONDS);
}
+ @Override
+ protected void onResume() {
+ super.onResume();
+ }
/*
* (non-Javadoc)
*