gtk-demo: Include config.h first

If config.h is included after gdkversionmacros.h, _GDK_EXTERN
gets redefined and cpp doesn't like that.
This commit is contained in:
Matthias Clasen 2013-05-05 12:16:51 -04:00
parent 0b3461ff1b
commit 265e617f0a

View File

@ -5,9 +5,10 @@
* This example uses GtkUIManager and GtkActionGroup.
*/
#include <gtk/gtk.h>
#include "config.h"
#include <gtk/gtk.h>
static GtkWidget *window = NULL;
static GtkWidget *infobar = NULL;
static GtkWidget *messagelabel = NULL;