Re: [Gimp-developer] Scope of variables

2009-11-18 Thread Sven Neumann
On Wed, 2009-11-18 at 00:23 -0200, Nelson A. de Oliveira wrote:

 --- app/core/gimpimage-convert.c.old  2009-11-18 00:18:55.0 -0200
 +++ app/core/gimpimage-convert.c  2009-11-18 00:19:34.0 -0200
 @@ -835,8 +835,6 @@
/*  Convert to indexed?  Build histogram if necessary.  */
if (new_type == GIMP_INDEXED)
  {
 -  gint i;
 -
/* fprintf(stderr,  TO INDEXED(%d) , num_cols); */
 
/* don't dither if the input is grayscale and we are simply
 @@ -897,6 +895,7 @@
! needs_quantize 
palette_type == GIMP_MAKE_PALETTE)
  {
 +  gint i;
/* If this is an RGB image, and the user wanted a custom-built
 *  generated palette, and this image has no more colours than
 *  the user asked for, we don't need the first pass 
 (quantization).
 

There's a missing newline after the moved declaration.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


[Gimp-developer] Scope of variables

2009-11-17 Thread Nelson A. de Oliveira
Hi!

Is it interesting to limit the scope of the variables to where they
are only used?
For example, i is not used inside only one if here in
app/core/gimpimage-convert.c (and thus has been moved to where it's
only necessary):

--- app/core/gimpimage-convert.c.old2009-11-18 00:18:55.0 -0200
+++ app/core/gimpimage-convert.c2009-11-18 00:19:34.0 -0200
@@ -835,8 +835,6 @@
   /*  Convert to indexed?  Build histogram if necessary.  */
   if (new_type == GIMP_INDEXED)
 {
-  gint i;
-
   /* fprintf(stderr,  TO INDEXED(%d) , num_cols); */

   /* don't dither if the input is grayscale and we are simply
@@ -897,6 +895,7 @@
   ! needs_quantize 
   palette_type == GIMP_MAKE_PALETTE)
 {
+  gint i;
   /* If this is an RGB image, and the user wanted a custom-built
*  generated palette, and this image has no more colours than
*  the user asked for, we don't need the first pass (quantization).


Are these kind of minor changes interesting for Gimp, please?

Thank you!

Best regards,
Nelson
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Scope of variables

2009-11-17 Thread Nelson A. de Oliveira
Hi again!

On Wed, Nov 18, 2009 at 12:23 AM, Nelson A. de Oliveira
nao...@gmail.com wrote:
 For example, i is not used inside only one if here in
 app/core/gimpimage-convert.c (and thus has been moved to where it's
 only necessary):

I need to sleep.
Read it as: For example, i is used inside only one if here in
app/core/gimpimage-convert.c
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer