mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 969316 - Use description column instead of url in PanelListRow (r=margaret)
This commit is contained in:
parent
6e479f019b
commit
c91a2fadc5
@ -43,9 +43,9 @@ public class PanelListRow extends TwoLineRow {
|
||||
final String title = cursor.getString(titleIndex);
|
||||
setTitle(title);
|
||||
|
||||
int urlIndex = cursor.getColumnIndexOrThrow(HomeItems.URL);
|
||||
final String url = cursor.getString(urlIndex);
|
||||
setDescription(url);
|
||||
int descriptionIndex = cursor.getColumnIndexOrThrow(HomeItems.DESCRIPTION);
|
||||
final String description = cursor.getString(descriptionIndex);
|
||||
setDescription(description);
|
||||
|
||||
int imageIndex = cursor.getColumnIndexOrThrow(HomeItems.IMAGE_URL);
|
||||
final String imageUrl = cursor.getString(imageIndex);
|
||||
|
Loading…
Reference in New Issue
Block a user