diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-08-05 22:34:24 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-08-05 22:34:24 +0000 |
| commit | 9dd48db22c3bea2d8d83afef43bafdb5e0ff166c (patch) | |
| tree | c0c2f57f495cd1849f8b0b743ce04a41676b80b7 | |
| parent | 10b9e3b024c3a1f3796b6c3f764a5dc3d19b84cb (diff) | |
| download | rockbox-9dd48db22c3bea2d8d83afef43bafdb5e0ff166c.zip rockbox-9dd48db22c3bea2d8d83afef43bafdb5e0ff166c.tar.gz rockbox-9dd48db22c3bea2d8d83afef43bafdb5e0ff166c.tar.bz2 rockbox-9dd48db22c3bea2d8d83afef43bafdb5e0ff166c.tar.xz | |
Remove faulty reference to inexistent resource.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27730 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | android/src/org/rockbox/RockboxService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/src/org/rockbox/RockboxService.java b/android/src/org/rockbox/RockboxService.java index 216cd12..5f8329d 100644 --- a/android/src/org/rockbox/RockboxService.java +++ b/android/src/org/rockbox/RockboxService.java @@ -154,7 +154,7 @@ public class RockboxService extends Service CharSequence text = getText(R.string.notification); // Set the icon, scrolling text and timestamp - notification = new Notification(R.drawable.rb, text, + notification = new Notification(R.drawable.icon, text, System.currentTimeMillis()); // The PendingIntent to launch our activity if the user selects this notification |