mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
71dd82ecdf
--HG-- extra : transplant_source : %D0%2B6%19%96%99%8D%21%F5%5D8%92%FC%1E%1D%BB%B77h%81
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 */
|