[gimp] Remove all wrong and useless comments



commit 096ff4b093f8d5baea8bff93ba06d66e71939a23
Author: Michael Natterer <mitch gimp org>
Date:   Tue Sep 1 19:23:44 2009 +0200

    Remove all wrong and useless comments
    
    Remove all outdated comments that we just plain wrong and all
    useless ones that are like:
    
    /*  do foo bar  */
    foo_bar();

 app/core/gimplayer-floating-sel.c |   13 +------------
 1 files changed, 1 insertions(+), 12 deletions(-)
---
diff --git a/app/core/gimplayer-floating-sel.c b/app/core/gimplayer-floating-sel.c
index 4e9ab5d..1a087a1 100644
--- a/app/core/gimplayer-floating-sel.c
+++ b/app/core/gimplayer-floating-sel.c
@@ -74,12 +74,10 @@ floating_sel_attach (GimpLayer    *layer,
         drawable = gimp_image_get_active_drawable (image);
     }
 
-  /*  set the drawable  */
   gimp_layer_set_lock_alpha (layer, TRUE, FALSE);
 
   gimp_layer_set_floating_sel_drawable (layer, drawable);
 
-  /*  add the layer to the image  */
   gimp_image_add_layer (image, layer, NULL, 0, TRUE);
 }
 
@@ -93,17 +91,14 @@ floating_sel_anchor (GimpLayer *layer)
 
   image = gimp_item_get_image (GIMP_ITEM (layer));
 
-  /*  Start a floating selection anchoring undo  */
   gimp_image_undo_group_start (image, GIMP_UNDO_GROUP_FS_ANCHOR,
                                _("Anchor Floating Selection"));
 
   /*  Composite the floating selection contents  */
   floating_sel_composite (layer);
 
-  /*  remove the floating selection  */
   gimp_image_remove_layer (image, layer, TRUE, NULL);
 
-  /*  end the group undo  */
   gimp_image_undo_group_end (image);
 
   /*  invalidate the boundaries  */
@@ -124,7 +119,7 @@ floating_sel_to_layer (GimpLayer  *layer,
   item  = GIMP_ITEM (layer);
   image = gimp_item_get_image (item);
 
-  /*  Check if the floating layer belongs to a channel...  */
+  /*  Check if the floating layer belongs to a channel  */
   if (GIMP_IS_CHANNEL (gimp_layer_get_floating_sel_drawable (layer)))
     {
       g_set_error_literal (error, GIMP_ERROR, GIMP_FAILED,
@@ -307,9 +302,6 @@ floating_sel_composite (GimpLayer *layer)
   gimp_item_get_offset (GIMP_ITEM (layer), &off_x, &off_y);
   gimp_item_get_offset (GIMP_ITEM (drawable), &dr_off_x, &dr_off_y);
 
-  /*  First restore what's behind the image if necessary,
-   *  then check for visibility
-   */
   if (gimp_item_get_visible (GIMP_ITEM (layer)) &&
       gimp_rectangle_intersect (off_x, off_y,
                                 gimp_item_get_width  (GIMP_ITEM (layer)),
@@ -343,9 +335,6 @@ floating_sel_composite (GimpLayer *layer)
             gimp_layer_set_lock_alpha (GIMP_LAYER (drawable), FALSE, FALSE);
         }
 
-      /*  apply the fs with the undo specified by the value
-       *  passed to this function
-       */
       gimp_drawable_apply_region (drawable, &fsPR,
                                   TRUE, NULL,
                                   gimp_layer_get_opacity (layer),



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]