gecko/widget/gtk2/compat/gtk/gtkdialog.h
Karl Tomlinson 71dd82ecdf b=794285 restore support for building against GTK+ 2.10 r=glandium
--HG--
extra : transplant_source : %D0%2B6%19%96%99%8D%21%F5%5D8%92%FC%1E%1D%BB%B77h%81
2012-09-27 12:23:00 +12:00

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 */