[goobox] Fix GTK+ single includes



commit 75d116421d524e914854ff9f731560c5eda98cc4
Author: Felix Riemann <friemann gnome org>
Date:   Wed Nov 25 20:30:31 2009 +0100

    Fix GTK+ single includes

 src/actions.h                  |    2 +-
 src/goo-volume-tool-button.h   |    2 +-
 src/gtk-file-chooser-preview.h |    2 +-
 src/preferences.h              |    3 +--
 4 files changed, 4 insertions(+), 5 deletions(-)
---
diff --git a/src/actions.h b/src/actions.h
index 8ab0cec..267b7dc 100644
--- a/src/actions.h
+++ b/src/actions.h
@@ -23,7 +23,7 @@
 #ifndef ACTIONS_H
 #define ACTIONS_H
 
-#include <gtk/gtkaction.h>
+#include <gtk/gtk.h>
 
 void activate_action_play (GtkAction *action, gpointer data);
 void activate_action_play_selected (GtkAction *action, gpointer data);
diff --git a/src/goo-volume-tool-button.h b/src/goo-volume-tool-button.h
index 2172ad8..703a710 100644
--- a/src/goo-volume-tool-button.h
+++ b/src/goo-volume-tool-button.h
@@ -47,7 +47,7 @@
 #ifndef __GOO_VOLUME_TOOL_BUTTON_H__
 #define __GOO_VOLUME_TOOL_BUTTON_H__
 
-#include <gtk/gtktoolbutton.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 
diff --git a/src/gtk-file-chooser-preview.h b/src/gtk-file-chooser-preview.h
index b2e927c..ff9d296 100644
--- a/src/gtk-file-chooser-preview.h
+++ b/src/gtk-file-chooser-preview.h
@@ -25,7 +25,7 @@
 #ifndef GTK_FILE_CHOOSER_PREVIEW_H
 #define GTK_FILE_CHOOSER_PREVIEW_H
 
-#include <gtk/gtkframe.h>
+#include <gtk/gtk.h>
 
 #define GTK_TYPE_FILE_CHOOSER_PREVIEW              (gtk_file_chooser_preview_get_type ())
 #define GTK_FILE_CHOOSER_PREVIEW(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FILE_CHOOSER_PREVIEW, GtkFileChooserPreview))
diff --git a/src/preferences.h b/src/preferences.h
index 6508bc6..c267418 100644
--- a/src/preferences.h
+++ b/src/preferences.h
@@ -23,8 +23,7 @@
 #ifndef PREFERENCES_H
 #define PREFERENCES_H
 
-#include <gtk/gtkwindow.h>
-#include <gtk/gtkenums.h>
+#include <gtk/gtk.h>
 #include "typedefs.h"
 #include "goo-window.h"
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]