Add back as wrapper function to restore source/binary compatibility.

Tue Jan 12 14:31:43 1999  Owen Taylor  <otaylor@redhat.com>

	* gtk/gtkstyle.[ch] (gtk_style_apply_default_pixmap):
	Add back as wrapper function to restore source/binary
	compatibility. grrrr.
This commit is contained in:
Owen Taylor 1999-01-12 19:40:21 +00:00 committed by Owen Taylor
parent 9619e45aa7
commit bef538cc7e
2 changed files with 26 additions and 1 deletions

View File

@ -1162,6 +1162,20 @@ gtk_style_apply_default_background (GtkStyle *style,
}
}
void
gtk_style_apply_default_pixmap (GtkStyle *style,
GdkWindow *window,
GtkStateType state_type,
GdkRectangle *area,
gint x,
gint y,
gint width,
gint height)
{
gtk_style_apply_default_background (style, window, FALSE, state_type,
area, x, y, width, height);
}
static void
gtk_default_draw_hline (GtkStyle *style,
GdkWindow *window,

View File

@ -758,7 +758,18 @@ void gtk_paint_handle (GtkStyle *style,
gint width,
gint height,
GtkOrientation orientation);
/* Deprecated
*/
void gtk_style_apply_default_pixmap (GtkStyle *style,
GdkWindow *window,
GtkStateType state_type,
GdkRectangle *area,
gint x,
gint y,
gint width,
gint height);
#ifdef __cplusplus
}
#endif /* __cplusplus */