~ubuntu-branches/ubuntu/raring/banshee/raring

« back to all changes in this revision

Viewing changes to debian/patches/0003-Quit-only-on-explicit-shutdown-request.patch

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2012-01-23 23:16:49 UTC
  • mfrom: (6.3.22 experimental)
  • Revision ID: package-import@ubuntu.com-20120123231649-safm1f8eycltcgsf
Tags: 2.3.4.ds-1ubuntu1
* Merge from Debian Experimental, remaining changes:
  + Enable and recommend SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and suggest u1ms
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector
  + [08dea2c] Revert "Fix invalid cast causing ftbfs with libgpod"
* [b617fe0] Convert Ubuntu-specific patches to gbp-pq patches
* Also fixes Launchpad bugs:
  - Fixes race condition while starting (LP: #766303)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From: Didier Roche <didrocks@ubuntu.com>
 
2
Date: Mon, 5 Jul 2010 13:14:37 +0200
 
3
Subject: Quit only on explicit shutdown request
 
4
 
 
5
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=623588
 
6
---
 
7
 .../Banshee.MeeGo/Banshee.MeeGo/MeeGoService.cs    |    5 -----
 
8
 1 files changed, 0 insertions(+), 5 deletions(-)
 
9
 
 
10
diff --git a/src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MeeGoService.cs b/src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MeeGoService.cs
 
11
index bb7b31a..5aae94e 100644
 
12
--- a/src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MeeGoService.cs
 
13
+++ b/src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MeeGoService.cs
 
14
@@ -113,11 +113,6 @@ namespace Banshee.MeeGo
 
15
                 return true;
 
16
             };
 
17
 
 
18
-            // Since the Panel is running, we don't actually ever want to quit!
 
19
-            Banshee.ServiceStack.Application.ShutdownRequested += () => {
 
20
-                elements_service.PrimaryWindow.Hide ();
 
21
-                return false;
 
22
-            };
 
23
         }
 
24
 
 
25
         public void PresentPrimaryInterface ()
 
26
--