mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
292 B
C
16 lines
292 B
C
|
#ifndef GTKDIALOG_WRAPPER_H
|
||
|
#define GTKDIALOG_WRAPPER_H
|
||
|
|
||
|
#include_next <gtk/gtkdialog.h>
|
||
|
#include <gtk/gtkversion.h>
|
||
|
|
||
|
#if !GTK_CHECK_VERSION(2, 14, 0)
|
||
|
static inline GtkWidget *
|
||
|
gtk_dialog_get_content_area(GtkDialog *dialog)
|
||
|
{
|
||
|
return dialog->vbox;
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* GTKDIALOG_WRAPPER_H */
|