[Spice-commits] 2 commits - gtk/spice-gstaudio.c gtk/usb-device-manager.c

Christophe Fergau teuf at kemper.freedesktop.org
Mon Jul 8 09:57:48 PDT 2013


 gtk/spice-gstaudio.c     |    3 +++
 gtk/usb-device-manager.c |    2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 0db85b23b587807c31294b7344d805c7bd841bac
Author: Christophe Fergeau <cfergeau at redhat.com>
Date:   Mon Jul 8 18:15:44 2013 +0200

    doc: Fix typo in code comment

diff --git a/gtk/usb-device-manager.c b/gtk/usb-device-manager.c
index 8a20e9e..0535609 100644
--- a/gtk/usb-device-manager.c
+++ b/gtk/usb-device-manager.c
@@ -533,7 +533,7 @@ static void spice_usb_device_manager_class_init(SpiceUsbDeviceManagerClass *klas
      *
      * Use -1 for @class/@vendor/@product/@version to accept any value.
      *
-     * And the rules are themselves are concatonated like this:
+     * And the rules themselves are concatenated like this:
      *
      * @rule1|@rule2|@rule3
      *
commit 3da9f1b49c9d3956b925546ff7e929fcb38731f4
Author: Christophe Fergeau <cfergeau at redhat.com>
Date:   Mon Jul 8 18:14:12 2013 +0200

    gst: Chain up dispose impl to parent class

diff --git a/gtk/spice-gstaudio.c b/gtk/spice-gstaudio.c
index 6dd250e..4a80889 100644
--- a/gtk/spice-gstaudio.c
+++ b/gtk/spice-gstaudio.c
@@ -101,6 +101,9 @@ static void spice_gstaudio_dispose(GObject *obj)
         g_object_unref(p->rchannel);
         p->rchannel = NULL;
     }
+
+    if (G_OBJECT_CLASS(spice_gstaudio_parent_class)->dispose)
+        G_OBJECT_CLASS(spice_gstaudio_parent_class)->dispose(obj);
 }
 
 static void spice_gstaudio_init(SpiceGstaudio *pulse)


More information about the Spice-commits mailing list