added forgotten intent to intent list (thx fkloft)

This commit is contained in:
Philipp Schaefer 2013-07-31 22:04:11 +02:00
parent fe47f9b5dc
commit 0b854a2b42

View File

@ -122,6 +122,7 @@ public class IntentListView extends ListView {
// wrapper method for single intents
public void setIntent(Intent intent) {
ArrayList<Intent> intentList = new ArrayList<Intent>(1);
intentList.add(intent);
setIntents(intentList);
}