Skip to content

Commit ca5de3b

Browse files
committed
Merge pull request #22 from krtek/wishlist-upgrade
Wishlist upgrade to 0.8
2 parents 5c187ce + 5c83259 commit ca5de3b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>com.github.kevinsawicki</groupId>
7979
<artifactId>wishlist</artifactId>
80-
<version>0.4</version>
80+
<version>0.8</version>
8181
<type>apklib</type>
8282
</dependency>
8383
<dependency>

app/src/main/java/com/donnfelker/android/bootstrap/ui/AlternatingColorListAdapter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ public AlternatingColorListAdapter(final int layoutId,
5959
@Override
6060
protected void update(final int position, final V item) {
6161
if (position % 2 != 0)
62-
view.setBackgroundResource(primaryResource);
62+
updater.view.setBackgroundResource(primaryResource);
6363
else
64-
view.setBackgroundResource(secondaryResource);
64+
updater.view.setBackgroundResource(secondaryResource);
6565
}
6666
}

0 commit comments

Comments
 (0)