diff options
author | Benjamin Otte <otte@redhat.com> | 2012-03-03 19:41:55 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-03-03 19:45:03 +0100 |
commit | 2353d60b8a7a4f2ba619a4226fb7df04f126334a (patch) | |
tree | 6fd226177e1a80f555e814bb8c100208e38593ef /gtk/gtkscalebutton.c | |
parent | 7844e8089c53ce3b4e209420f93a07b5ef3f7293 (diff) | |
download | gtk+-2353d60b8a7a4f2ba619a4226fb7df04f126334a.tar.gz |
types: Move GtkAdustment declaration to gtktypes.h
... and make all the headers to not include gtkadjustment.h anymore. Of
course, also include it in the source files instead.
Diffstat (limited to 'gtk/gtkscalebutton.c')
-rw-r--r-- | gtk/gtkscalebutton.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/gtkscalebutton.c b/gtk/gtkscalebutton.c index b91c6792cb..43055ea225 100644 --- a/gtk/gtkscalebutton.c +++ b/gtk/gtkscalebutton.c @@ -33,6 +33,8 @@ #include "config.h" +#include "gtkscalebutton.h" + #ifndef _WIN32 #define _GNU_SOURCE #endif @@ -40,6 +42,7 @@ #include <stdlib.h> #include <string.h> +#include "gtkadjustment.h" #include "gtkbindings.h" #include "gtkframe.h" #include "gtkmain.h" @@ -47,7 +50,6 @@ #include "gtkorientable.h" #include "gtkprivate.h" #include "gtkscale.h" -#include "gtkscalebutton.h" #include "gtkstock.h" #include "gtkbox.h" #include "gtkwindow.h" |