~ubuntu-branches/ubuntu/utopic/sflphone/utopic-proposed

« back to all changes in this revision

Viewing changes to debian/patches/drop-service-flag.patch

  • Committer: Package Import Robot
  • Author(s): Dimitri John Ledkov
  • Date: 2014-04-16 15:56:01 UTC
  • Revision ID: package-import@ubuntu.com-20140416155601-7vysx54kxv4wgave
Tags: 1.3.0-1ubuntu1
Drop G_APPLICATION_IS_SERVICE flag when creating a new gnome
client. Thus allow launching the gnome client, instead of silently
quitting and do nothing. (LP: #1299967)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: Drop G_APPLICATION_IS_SERVICE flag when creating a new gnome client
 
2
Author: Dimitri John Ledkov <xnox@ubuntu.com>
 
3
Bug-Ubuntu: https://bugs.launchpad.net/bugs/1299967
 
4
 
 
5
--- sflphone-1.3.0.orig/gnome/src/sflphone_client.c
 
6
+++ sflphone-1.3.0/gnome/src/sflphone_client.c
 
7
@@ -102,7 +102,7 @@ sflphone_client_new()
 
8
 {
 
9
     SFLPhoneClient *client = g_object_new(sflphone_client_get_type(),
 
10
             "application-id", "org.sfl.SFLphone",
 
11
-            "flags", G_APPLICATION_HANDLES_COMMAND_LINE | G_APPLICATION_IS_SERVICE, NULL);
 
12
+            "flags", G_APPLICATION_HANDLES_COMMAND_LINE, NULL);
 
13
     return client;
 
14
 }
 
15