summaryrefslogtreecommitdiff
path: root/extra/gnome-user-share/gnome-user-share-2.30.1-libnotify-0.7.patch
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-05-02 00:29:16 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-05-02 00:29:16 +0000
commit3be02a9acbeb006d9a9e6136c54d91064cc7d80e (patch)
treeade247e1b6c47fbd7362273f59d3ae4f955587a7 /extra/gnome-user-share/gnome-user-share-2.30.1-libnotify-0.7.patch
parent40f0b1c7106cc1fed13f14e80f083ecd69c416f5 (diff)
Mon May 2 00:29:22 UTC 2011
Diffstat (limited to 'extra/gnome-user-share/gnome-user-share-2.30.1-libnotify-0.7.patch')
-rw-r--r--extra/gnome-user-share/gnome-user-share-2.30.1-libnotify-0.7.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/extra/gnome-user-share/gnome-user-share-2.30.1-libnotify-0.7.patch b/extra/gnome-user-share/gnome-user-share-2.30.1-libnotify-0.7.patch
deleted file mode 100644
index 73c5a9ab8..000000000
--- a/extra/gnome-user-share/gnome-user-share-2.30.1-libnotify-0.7.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-http://pkgs.fedoraproject.org/gitweb/?p=gnome-user-share.git;a=blob;f=notify.patch;hb=HEAD
-
---- src/obexpush.c
-+++ src/obexpush.c
-@@ -139,10 +139,9 @@ show_notification (const char *filename)
- /* Translators: %s is the name of the filename received */
- notification_text = g_strdup_printf(_("You received \"%s\" via Bluetooth"), display);
- g_free (display);
-- notification = notify_notification_new_with_status_icon (_("You received a file"),
-- notification_text,
-- "dialog-information",
-- GTK_STATUS_ICON (statusicon));
-+ notification = notify_notification_new (_("You received a file"),
-+ notification_text,
-+ "dialog-information");
-
- notify_notification_set_timeout (notification, NOTIFY_EXPIRES_DEFAULT);
-
-@@ -218,10 +217,10 @@ device_is_authorised (const char *bdaddr
- char *device_path;
- GHashTable *props;
-
-- g_message ("checking adapter %s", g_ptr_array_index (adapters, i));
-+ g_message ("checking adapter %s", (char *)g_ptr_array_index (adapters, i));
-
- adapter = dbus_g_proxy_new_for_name (connection, "org.bluez",
-- g_ptr_array_index (adapters, i), "org.bluez.Adapter");
-+ (char *)g_ptr_array_index (adapters, i), "org.bluez.Adapter");
-
- if (dbus_g_proxy_call (adapter, "FindDevice", NULL,
- G_TYPE_STRING, bdaddr, G_TYPE_INVALID,