diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-09-25 23:52:39 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-09-25 23:54:31 -0400 |
commit | 7439e03f3d22e470ba6a774fdd2dd884d4bcd339 (patch) | |
tree | eeae0820c35f4705a47304e22ba5ec7ecf395437 /gtk/gtkstackswitcher.h | |
parent | 5315661721137c1f195fa88c2bf12f1a3e32ecfa (diff) | |
download | gtk+-7439e03f3d22e470ba6a774fdd2dd884d4bcd339.tar.gz |
Fixups to GtkStack
The GtkStack and GtkStackSwitcher code did not really
follow GTK+ conventions for includes. Fix that, and also
fix up a case of gpointer vs gpointer* confusion
in gtkstack.c.
Diffstat (limited to 'gtk/gtkstackswitcher.h')
-rw-r--r-- | gtk/gtkstackswitcher.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkstackswitcher.h b/gtk/gtkstackswitcher.h index 402b83778c..093f85f0fb 100644 --- a/gtk/gtkstackswitcher.h +++ b/gtk/gtkstackswitcher.h @@ -20,7 +20,8 @@ #ifndef __GTK_STACK_SWITCHER_H__ #define __GTK_STACK_SWITCHER_H__ -#include "gtkstack.h" +#include <gtk/gtkbox.h> +#include <gtk/gtkstack.h> G_BEGIN_DECLS |