try again

This commit is contained in:
Matthias Clasen 2010-09-23 08:06:14 -04:00
parent 582ff9a8e8
commit 3bec639676

View File

@ -63,6 +63,32 @@ diff -up gnome-bluetooth-2.90.0/lib/test-deviceselection.c.gtk-fixes gnome-bluet
GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT, GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
GTK_STOCK_CONNECT, GTK_RESPONSE_ACCEPT, NULL); GTK_STOCK_CONNECT, GTK_RESPONSE_ACCEPT, NULL);
gtk_dialog_set_response_sensitive(GTK_DIALOG(dialog), gtk_dialog_set_response_sensitive(GTK_DIALOG(dialog),
diff -up gnome-bluetooth-2.90.0/moblin/moblin-copy-n-paste/mux-banner.c.gtk-fixes gnome-bluetooth-2.90.0/moblin/moblin-copy-n-paste/mux-banner.c
--- gnome-bluetooth-2.90.0/moblin/moblin-copy-n-paste/mux-banner.c.gtk-fixes 2010-09-23 07:51:43.673997999 -0400
+++ gnome-bluetooth-2.90.0/moblin/moblin-copy-n-paste/mux-banner.c 2010-09-23 08:04:11.693997999 -0400
@@ -48,16 +48,15 @@ mux_banner_expose (GtkWidget *widget, Gd
{
MuxBanner *banner = MUX_BANNER (widget);
GdkWindow *window;
- GdkGC *gc;
+ cairo_t *cr;
window = gtk_widget_get_window (widget);
- gc = gdk_gc_new (window);
- gdk_gc_set_foreground (gc, &banner->priv->colour);
-
- gdk_draw_rectangle (window, gc, TRUE,
- event->area.x, event->area.y,
- event->area.width, event->area.height);
+ cr = gdk_cairo_create (window);
+ gdk_cairo_set_source_color (cr, &banner->priv->colour);
+ gdk_cairo_rectangle (cr, &event->area);
+ cairo_fill (cr);
+ cairo_destroy (cr);
return GTK_WIDGET_CLASS (mux_banner_parent_class)->expose_event (widget, event);
}
diff -up gnome-bluetooth-2.90.0/moblin/moblin-panel.c.gtk-fixes gnome-bluetooth-2.90.0/moblin/moblin-panel.c diff -up gnome-bluetooth-2.90.0/moblin/moblin-panel.c.gtk-fixes gnome-bluetooth-2.90.0/moblin/moblin-panel.c
--- gnome-bluetooth-2.90.0/moblin/moblin-panel.c.gtk-fixes 2010-09-23 07:09:26.141997999 -0400 --- gnome-bluetooth-2.90.0/moblin/moblin-panel.c.gtk-fixes 2010-09-23 07:09:26.141997999 -0400
+++ gnome-bluetooth-2.90.0/moblin/moblin-panel.c 2010-09-23 07:09:50.938997899 -0400 +++ gnome-bluetooth-2.90.0/moblin/moblin-panel.c 2010-09-23 07:09:50.938997899 -0400