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

Re: [gnome-love] Re: [gnome-love]Wow.



ok, here's a patch, that fixes problems in gcalc
mentioned in

http://www.gnome.org/todo/view.php3?id=42

It is a patch to gnome-libs

On Wed, May 23, 2001 at 07:19:46PM -0400, Miguel de Icaza wrote:
> 
> > How and in what way should we "ship" the patch?
> > 
> > I'm assuming for directories, 
> > # diff -ur
> > for single files
> > # diff -u 
> 
> I am a fan of diff -ruN directory.old directory.new
> 
> > Should we email the MAINTAINER or post to the list?
> > Could you go over the proper protocol to use?
> 
> I would say both.
> 
> _______________________________________________
> gnome-love mailing list
> gnome-love gnome org
> http://mail.gnome.org/mailman/listinfo/gnome-love

-- 
Mike Palczewski
mpalczew u washington edu
diff -ur gnome-libs-1.2.13.old/libgnomeui/gnome-calculator.c gnome-libs-1.2.13.new/libgnomeui/gnome-calculator.c
--- gnome-libs-1.2.13.old/libgnomeui/gnome-calculator.c	Sat Jun 17 09:53:48 2000
+++ gnome-libs-1.2.13.new/libgnomeui/gnome-calculator.c	Wed May 23 12:33:37 2001
@@ -1308,7 +1308,9 @@
 						 x,x+1,y,y+1,
 						 GTK_FILL | GTK_EXPAND |
 						 	GTK_SHRINK,
-						 0, 2, 2);
+						 GTK_FILL | GTK_EXPAND |
+						 	GTK_SHRINK
+							, 2, 2);
 			}
 		}
 	}
@@ -1318,7 +1320,9 @@
 			   gc);
 	gtk_object_set_user_data(GTK_OBJECT(gc->invert_button),gc);
 	gtk_widget_show(gc->invert_button);
-	gtk_table_attach_defaults(GTK_TABLE(table),gc->invert_button,0,1,1,2);
+	gtk_table_attach(GTK_TABLE(table),gc->invert_button,0,1,1,2,
+			GTK_FILL | GTK_EXPAND |GTK_SHRINK,
+			GTK_FILL | GTK_EXPAND |GTK_SHRINK, 2, 2);
 }
 


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