formatting.

2008-04-29  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimpwindow.c (gimp_window_key_press_event): 
formatting.


svn path=/trunk/; revision=25548
This commit is contained in:
Sven Neumann 2008-04-29 08:47:52 +00:00 committed by Sven Neumann
parent 5709dcc27a
commit a780a37830
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-04-29 Sven Neumann <sven@gimp.org>
* app/widgets/gimpwindow.c (gimp_window_key_press_event): formatting.
2008-04-28 Sven Neumann <sven@gimp.org>
* app/display/gimpscalecombobox.c: keep the current scale value,

View File

@ -77,7 +77,13 @@ gimp_window_key_press_event (GtkWidget *widget,
/* chain up, bypassing gtk_window_key_press(), to invoke binding set */
if (! handled)
handled = GTK_WIDGET_CLASS (g_type_class_peek (g_type_parent (GTK_TYPE_WINDOW)))->key_press_event (widget, event);
{
GtkWidgetClass *widget_class;
widget_class = g_type_class_peek_static (g_type_parent (GTK_TYPE_WINDOW));
handled = widget_class->key_press_event (widget, event);
}
return handled;
}