[Goodies-commits] r6735 - xfburn/trunk/xfburn

David Mohr squisher at xfce.org
Sun Feb 22 04:26:03 CET 2009


Author: squisher
Date: 2009-02-22 03:26:03 +0000 (Sun, 22 Feb 2009)
New Revision: 6735

Modified:
   xfburn/trunk/xfburn/xfburn-data-composition.c
   xfburn/trunk/xfburn/xfburn-device-box.c
   xfburn/trunk/xfburn/xfburn-device-list.c
Log:
Some minor changes

Modified: xfburn/trunk/xfburn/xfburn-data-composition.c
===================================================================
--- xfburn/trunk/xfburn/xfburn-data-composition.c	2009-02-22 02:25:33 UTC (rev 6734)
+++ xfburn/trunk/xfburn/xfburn-data-composition.c	2009-02-22 03:26:03 UTC (rev 6735)
@@ -1750,6 +1750,10 @@
         /* a directory which the user added for this composition */
         r = iso_tree_add_new_dir (parent, name, &dir);
         node = (IsoNode *) dir;
+
+        /* if the new directory is part of the root of the iso,
+         * then its owner will be set to root:root. Not sure what a better
+         * default could be, so I'll just leave it like that. */
       } else {
         /* something existing on the filesystem, creating a node
          * will copy its attributes */

Modified: xfburn/trunk/xfburn/xfburn-device-box.c
===================================================================
--- xfburn/trunk/xfburn/xfburn-device-box.c	2009-02-22 02:25:33 UTC (rev 6734)
+++ xfburn/trunk/xfburn/xfburn-device-box.c	2009-02-22 03:26:03 UTC (rev 6735)
@@ -130,10 +130,10 @@
 /*************************/
 static guint signals[LAST_SIGNAL];
 
-GtkType
+GType
 xfburn_device_box_get_type (void)
 {
-  static GtkType device_box_type = 0;
+  static GType device_box_type = 0;
 
   if (!device_box_type)
     {

Modified: xfburn/trunk/xfburn/xfburn-device-list.c
===================================================================
--- xfburn/trunk/xfburn/xfburn-device-list.c	2009-02-22 02:25:33 UTC (rev 6734)
+++ xfburn/trunk/xfburn/xfburn-device-list.c	2009-02-22 03:26:03 UTC (rev 6735)
@@ -175,10 +175,10 @@
     usleep (1002);
 
   if (ret < 0)
-    g_warning ("An error occurred while scanning for available drives!");
+    g_warning ("An error occurred while scanning for available drives");
 
   if (n_drives < 1) {
-    g_warning ("No drives were found! If this is in error, check the permissions.");
+    g_warning ("No drives were found! If this is in error, check the permissions");
   }
 
   for (i = 0; i < n_drives; i++) {
@@ -205,7 +205,7 @@
   burn_drive_info_free (drives);
 
   if (n_drives > 0 && n_burners < 1)
-    g_warning ("There are %d drives in your system, but none are capable of burning!", n_drives);
+    g_warning ("There are %d drives in your system, but none are capable of burning", n_drives);
   
   return n_burners;
 }




More information about the Goodies-commits mailing list