android-ibc-forum

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit f615eaf557a6b69d38b79183227c35b9d94979b0
parent 2b5122d4dc8d0168c526c0cf2e64db06e014d545
Author: Jan Dankert <devnull@localhost>
Date:   Wed, 10 Oct 2012 01:09:46 +0200

RSS-Kurzbeschreibung kann HTML-Tags enthalten.

Diffstat:
src/de/mtbnews/android/IBCActivity.java | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/de/mtbnews/android/IBCActivity.java b/src/de/mtbnews/android/IBCActivity.java @@ -103,7 +103,7 @@ public class IBCActivity extends ListActivity { final RSSFeed oldFeed = ((IBCApplication) getApplication()) .getNewsFeed(); - + if (oldFeed != null) { feed = oldFeed; @@ -133,7 +133,7 @@ public class IBCActivity extends ListActivity IBCActivity.this.setTitle(feed.getTitle()); ListAdapter adapter = new ListEntryContentAdapter( - IBCActivity.this, this.feed.getItems()); + IBCActivity.this, this.feed.getItems(), false, true); setListAdapter(adapter); } }.execute();