reflect Pango API change
2001-11-23 Hans Breuer <hans@breuer.org> * gdk/win32/gdkfont-win32.c (gdk_font_from_description) : reflect Pango API change * gtk/gtk.def : updated externals * gtk/gtkfixed.c (gtk_fixed_get_has_window) : use g_return_val_if_fail() to avoid 'function must return a value' * gtk/gtkrc.c : added spaces to fix small coding style issues * gtk/gtkwidget.c : ... and linebreaks. Also a static for 'static correctness' * gtk/makefile.msc.in : temporary(?) disable gtk<plug|socket> because they only can be build on win32 after applying my patch
This commit is contained in:
@ -6249,7 +6249,8 @@ gtk_requisition_free (GtkRequisition *requisition)
|
||||
g_free (requisition);
|
||||
}
|
||||
|
||||
AtkObject* gtk_widget_get_accessible (GtkWidget *widget)
|
||||
AtkObject*
|
||||
gtk_widget_get_accessible (GtkWidget *widget)
|
||||
{
|
||||
GtkWidgetClass *klass;
|
||||
|
||||
@ -6262,7 +6263,8 @@ AtkObject* gtk_widget_get_accessible (GtkWidget *widget)
|
||||
return klass->get_accessible (widget);
|
||||
}
|
||||
|
||||
AtkObject* gtk_widget_real_get_accessible (GtkWidget *widget)
|
||||
static AtkObject*
|
||||
gtk_widget_real_get_accessible (GtkWidget *widget)
|
||||
{
|
||||
AtkObject* accessible;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user