- Upgrade to 2.27.2
This commit is contained in:
parent
321240334a
commit
945bf3d15b
@ -1 +1 @@
|
||||
gnome-bluetooth-2.27.1.tar.bz2
|
||||
gnome-bluetooth-2.27.2.tar.bz2
|
||||
|
@ -1,6 +1,6 @@
|
||||
Name: gnome-bluetooth
|
||||
Version: 2.27.1
|
||||
Release: 4%{?dist}
|
||||
Version: 2.27.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Bluetooth graphical utilities
|
||||
|
||||
Group: Applications/Communications
|
||||
@ -31,8 +31,6 @@ Requires: notification-daemon
|
||||
Requires(post): desktop-file-utils
|
||||
Requires(postun): desktop-file-utils
|
||||
|
||||
Patch0: sendto-connect-fix.patch
|
||||
|
||||
%description
|
||||
The gnome-bluetooth package contains graphical utilities to setup,
|
||||
monitor and use Bluetooth devices.
|
||||
@ -62,7 +60,6 @@ for writing applications that require a Bluetooth device selection widget.
|
||||
|
||||
%prep
|
||||
%setup -q -n gnome-bluetooth-%{version}
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
%configure --disable-desktop-update --disable-icon-update
|
||||
@ -160,6 +157,9 @@ fi
|
||||
%{_datadir}/gtk-doc/html/gnome-bluetooth/
|
||||
|
||||
%changelog
|
||||
* Wed Apr 08 2009 - Bastien Nocera <bnocera@redhat.com> - 2.27.2-1
|
||||
- Upgrade to 2.27.2
|
||||
|
||||
* Tue Mar 10 2009 - Bastien Nocera <bnocera@redhat.com> - 2.27.1-4
|
||||
- Make the -libs-devel obsolete and provide the -devel package, so
|
||||
we can actually upgrade...
|
||||
|
@ -1,29 +0,0 @@
|
||||
--- trunk/sendto/main.c 2009/03/04 18:42:45 457
|
||||
+++ trunk/sendto/main.c 2009/03/05 00:12:12 458
|
||||
@@ -369,12 +369,12 @@
|
||||
GTK_RESPONSE_CLOSE, TRUE);
|
||||
}
|
||||
|
||||
-static void session_connect_error (DBusGProxy *proxy, DBusGProxy *session_obj, const char *error_name,
|
||||
+static void session_connect_error (DBusGProxy *proxy, const char *session_obj, const char *error_name,
|
||||
const char *error_message, gpointer user_data)
|
||||
{
|
||||
gchar *text;
|
||||
|
||||
- if (session_obj != session_proxy)
|
||||
+ if (strcmp (session_obj, dbus_g_proxy_get_path (session_proxy)) != 0)
|
||||
return;
|
||||
|
||||
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progress),
|
||||
@@ -388,9 +388,9 @@
|
||||
GTK_RESPONSE_CLOSE, TRUE);
|
||||
}
|
||||
|
||||
-static void session_connected(DBusGProxy *proxy, DBusGProxy *session_obj, gpointer user_data)
|
||||
+static void session_connected(DBusGProxy *proxy, const char *session_obj, gpointer user_data)
|
||||
{
|
||||
- if (session_obj != session_proxy)
|
||||
+ if (strcmp (session_obj, dbus_g_proxy_get_path (session_proxy)) != 0)
|
||||
return;
|
||||
|
||||
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progress), NULL);
|
Loading…
Reference in New Issue
Block a user