[banshee] ThickClient: remove unneeded ? operator



commit 495c4934508a10233cc758799b9015903fd516e4
Author: Andrés G. Aragoneses <knocte gmail com>
Date:   Sun Jan 19 20:53:18 2014 +0100

    ThickClient: remove unneeded ? operator
    
    MonoDevelop's SourceAnalysis tool was complaining about this
    line having an unneeded '?' operator because both sides of the
    expression resolved to the same value.

 .../Banshee.Gui.Dialogs/AboutDialog.cs             |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/AboutDialog.cs 
b/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/AboutDialog.cs
index a466aa9..87a4607 100644
--- a/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/AboutDialog.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/AboutDialog.cs
@@ -83,7 +83,7 @@ namespace Banshee.Gui.Dialogs
             // than plain Name, since it's been depreciated. We can't do that
             // yet though since it breaks stuff for other people.
             Name = "Banshee";
-            Logo = Gdk.Pixbuf.LoadFromResource (ApplicationContext.Debugging ? /*"jcastro.png"*/ 
"banshee-logo.png" : "banshee-logo.png");
+            Logo = Gdk.Pixbuf.LoadFromResource ("banshee-logo.png");
             Version = Banshee.ServiceStack.Application.DisplayVersion == 
Banshee.ServiceStack.Application.Version
                 ? Banshee.ServiceStack.Application.DisplayVersion
                 : String.Format ("{0} ({1})",


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]