[Goodies-commits] r6711 - in xfburn/trunk: . xfburn

David Mohr squisher at xfce.org
Wed Feb 18 04:41:31 CET 2009


Author: squisher
Date: 2009-02-18 03:41:31 +0000 (Wed, 18 Feb 2009)
New Revision: 6711

Modified:
   xfburn/trunk/README
   xfburn/trunk/xfburn/xfburn-hal-manager.c
Log:
Workaround for bug 4957, don't check hal's storage.cdrom.write_speed > 0

Modified: xfburn/trunk/README
===================================================================
--- xfburn/trunk/README	2009-02-18 00:16:43 UTC (rev 6710)
+++ xfburn/trunk/README	2009-02-18 03:41:31 UTC (rev 6711)
@@ -2,7 +2,7 @@
 xfburn
 ------
 
-Version 0.4.0, 2008-12-20
+Version 0.4.1, 2009-XX-XX
 
 http://www.xfce.org/projects/xfburn/
 

Modified: xfburn/trunk/xfburn/xfburn-hal-manager.c
===================================================================
--- xfburn/trunk/xfburn/xfburn-hal-manager.c	2009-02-18 00:16:43 UTC (rev 6710)
+++ xfburn/trunk/xfburn/xfburn-hal-manager.c	2009-02-18 03:41:31 UTC (rev 6711)
@@ -79,10 +79,10 @@
 static XfburnProgressDialogClass *parent_class = NULL;
 static guint signals[LAST_SIGNAL];
 
-GtkType
+GType
 xfburn_hal_manager_get_type ()
 {
-  static GtkType type = 0;
+  static GType type = 0;
 
   if (type == 0) {
     static const GTypeInfo our_info = {
@@ -369,9 +369,11 @@
           return -1;
         }
 
+        /* disable this check for the moment, assuming that the presence of the storage.cdrom.write_speed
+         * property is enough to detect a writer. This fixes bug 4957 for now.
         if (write_speed > 0)
-          writer = TRUE;
-        break;
+         */
+        writer = TRUE;
       }
     }
     libhal_free_string_array (cap_list);




More information about the Goodies-commits mailing list