banshee r4480 - in trunk/banshee: . src/Core/Banshee.ThickClient/Banshee.Gui.Widgets
- From: gburt svn gnome org
- To: svn-commits-list gnome org
- Subject: banshee r4480 - in trunk/banshee: . src/Core/Banshee.ThickClient/Banshee.Gui.Widgets
- Date: Mon, 8 Sep 2008 00:55:59 +0000 (UTC)
Author: gburt
Date: Mon Sep 8 00:55:59 2008
New Revision: 4480
URL: http://svn.gnome.org/viewvc/banshee?rev=4480&view=rev
Log:
2008-09-07 Gabriel Burt <gabriel burt gmail com>
* src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/UserJobTile.cs: Fix NRE
in icon code (BGO #551302).
Modified:
trunk/banshee/ChangeLog
trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/UserJobTile.cs
Modified: trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/UserJobTile.cs
==============================================================================
--- trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/UserJobTile.cs (original)
+++ trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/UserJobTile.cs Mon Sep 8 00:55:59 2008
@@ -198,7 +198,7 @@
UpdateIcons ();
} else {
for (int i = 0; i < job.IconNames.Length; i++) {
- if (!icon_names[i].Equals (job.IconNames[i])) {
+ if (icon_names[i] != job.IconNames[i]) {
UpdateIcons ();
break;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]