--- android/TrainInfo/src/dk/thoerup/traininfo/TimetableList.java 2011/05/02 15:43:42 1415 +++ android/TrainInfo/src/dk/thoerup/traininfo/TimetableList.java 2011/05/02 16:08:01 1416 @@ -106,15 +106,10 @@ super.onListItemClick(l, v, position, id); TimetableEntry tt = timetables.entries.get(position); - - StationEntry station = new StationEntry(); - station.setName( tt.getStation() ); - station.setId( tt.getStationId() ); - station.setIsRegional(true); - + Intent intent = new Intent(this, DepartureList.class); - intent.putExtra("stationbean", station); + intent.putExtra("stationbean", tt.getStationEntry() ); startActivity(intent); }