gtk-engines r1062 - in trunk: . engines/clearlooks/src



Author: acimitan
Date: Tue Feb  5 21:31:42 2008
New Revision: 1062
URL: http://svn.gnome.org/viewvc/gtk-engines?rev=1062&view=rev

Log:
2008-02-05  Andrea Cimitan  <andrea cimitan gmail com>

	* engines/clearlooks/src/clearlooks_style.c:
	(clearlooks_style_draw_box):
	Removed a "&" that caused this special case not to work
	The second toolbar of file-roller is still not working


Modified:
   trunk/ChangeLog
   trunk/engines/clearlooks/src/clearlooks_style.c

Modified: trunk/engines/clearlooks/src/clearlooks_style.c
==============================================================================
--- trunk/engines/clearlooks/src/clearlooks_style.c	(original)
+++ trunk/engines/clearlooks/src/clearlooks_style.c	Tue Feb  5 21:31:42 2008
@@ -837,7 +837,7 @@
 
 		if ((DETAIL ("handlebox_bin") || DETAIL ("dockitem_bin")) && GE_IS_BIN (widget))
 		{
-			GtkWidget* child = gtk_bin_get_child ((GtkBin*) &widget);
+			GtkWidget* child = gtk_bin_get_child ((GtkBin*) widget);
 			if (GE_IS_TOOLBAR (child))
 				gtk_widget_style_get (child, "shadow-type", &shadow_type, NULL);
 		}



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