[banshee] [Booter] Use the MeeGo client if appropriate (bgo#632420)



commit ba0e4dfc5ffda818d39966352e9fa97b004e3a2c
Author: Zhou Ting <ting z zhou intel com>
Date:   Mon Nov 1 20:03:30 2010 -0500

    [Booter] Use the MeeGo client if appropriate (bgo#632420)
    
    Signed-off-by: Gabriel Burt <gabriel burt gmail com>

 src/Clients/Booter/Booter/Entry.cs |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/src/Clients/Booter/Booter/Entry.cs b/src/Clients/Booter/Booter/Entry.cs
index bf14959..5a676ef 100644
--- a/src/Clients/Booter/Booter/Entry.cs
+++ b/src/Clients/Booter/Booter/Entry.cs
@@ -99,7 +99,11 @@ namespace Booter
             } else if (ApplicationContext.CommandLine.Contains ("client")) {
                 BootClient (Path.GetFileNameWithoutExtension (ApplicationContext.CommandLine["client"]));
             } else {
-                BootClient ("Nereid");
+                if (PlatformDetection.IsMeeGo) {
+                    BootClient ("MeeGo");
+                } else {
+                    BootClient ("Nereid");
+                }
             }
         }
 



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