totem r5799 - in trunk: . browser-plugin src src/backend src/plugins src/plugins/properties src/plugins/skipto



Author: cosimoc
Date: Mon Nov 10 19:08:35 2008
New Revision: 5799
URL: http://svn.gnome.org/viewvc/totem?rev=5799&view=rev

Log:
2008-11-10  Cosimo Cecchi  <cosimoc gnome org>

	* browser-plugin/totem-glow-button.h:
	* src/backend/bacon-resize.h:
	* src/backend/bacon-video-widget.h:
	* src/ev-sidebar.h:
	* src/plugins/properties/bacon-video-widget-properties.h:
	* src/plugins/skipto/totem-skipto.h:
	* src/plugins/totem-plugins-engine.c:
	* src/totem-audio-preview.c:
	* src/totem-object.c:
	* src/totem-open-location.h:
	* src/totem-playlist.h:
	* src/totem-preferences.c:
	* src/totem-resources.c:
	* src/totem-screenshot.h:
	* src/totem-statusbar.c:
	* src/totem-statusbar.h:
	* src/totem-time-label.h:
	* src/totem-uri.h:
	* src/totem-video-indexer.c:
	Use single GTK+/GLib includes.


Modified:
   trunk/ChangeLog
   trunk/browser-plugin/totem-glow-button.h
   trunk/src/backend/bacon-resize.h
   trunk/src/backend/bacon-video-widget.h
   trunk/src/ev-sidebar.h
   trunk/src/plugins/properties/bacon-video-widget-properties.h
   trunk/src/plugins/skipto/totem-skipto.h
   trunk/src/plugins/totem-plugins-engine.c
   trunk/src/totem-audio-preview.c
   trunk/src/totem-object.c
   trunk/src/totem-open-location.h
   trunk/src/totem-playlist.h
   trunk/src/totem-preferences.c
   trunk/src/totem-resources.c
   trunk/src/totem-screenshot.h
   trunk/src/totem-statusbar.c
   trunk/src/totem-statusbar.h
   trunk/src/totem-time-label.h
   trunk/src/totem-uri.h
   trunk/src/totem-video-indexer.c

Modified: trunk/browser-plugin/totem-glow-button.h
==============================================================================
--- trunk/browser-plugin/totem-glow-button.h	(original)
+++ trunk/browser-plugin/totem-glow-button.h	Mon Nov 10 19:08:35 2008
@@ -25,7 +25,7 @@
 #ifndef __TOTEM_GLOW_BUTTON_H__
 #define __TOTEM_GLOW_BUTTON_H__
 
-#include <gtk/gtkbutton.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: trunk/src/backend/bacon-resize.h
==============================================================================
--- trunk/src/backend/bacon-resize.h	(original)
+++ trunk/src/backend/bacon-resize.h	Mon Nov 10 19:08:35 2008
@@ -22,7 +22,7 @@
 
 #include <glib.h>
 #include <glib-object.h>
-#include <gtk/gtkwidget.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: trunk/src/backend/bacon-video-widget.h
==============================================================================
--- trunk/src/backend/bacon-video-widget.h	(original)
+++ trunk/src/backend/bacon-video-widget.h	Mon Nov 10 19:08:35 2008
@@ -28,7 +28,7 @@
 #ifndef HAVE_BACON_VIDEO_WIDGET_H
 #define HAVE_BACON_VIDEO_WIDGET_H
 
-#include <gtk/gtkeventbox.h>
+#include <gtk/gtk.h>
 /* for optical disc enumeration type */
 #include <totem-disc.h>
 

Modified: trunk/src/ev-sidebar.h
==============================================================================
--- trunk/src/ev-sidebar.h	(original)
+++ trunk/src/ev-sidebar.h	Mon Nov 10 19:08:35 2008
@@ -28,7 +28,7 @@
 #ifndef __EV_SIDEBAR_H__
 #define __EV_SIDEBAR_H__
 
-#include <gtk/gtkvbox.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: trunk/src/plugins/properties/bacon-video-widget-properties.h
==============================================================================
--- trunk/src/plugins/properties/bacon-video-widget-properties.h	(original)
+++ trunk/src/plugins/properties/bacon-video-widget-properties.h	Mon Nov 10 19:08:35 2008
@@ -23,7 +23,7 @@
 #ifndef BACON_VIDEO_WIDGET_PROPERTIES_H
 #define BACON_VIDEO_WIDGET_PROPERTIES_H
 
-#include <gtk/gtkvbox.h>
+#include <gtk/gtk.h>
 
 #define BACON_TYPE_VIDEO_WIDGET_PROPERTIES            (bacon_video_widget_properties_get_type ())
 #define BACON_VIDEO_WIDGET_PROPERTIES(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), BACON_TYPE_VIDEO_WIDGET_PROPERTIES, BaconVideoWidgetProperties))

Modified: trunk/src/plugins/skipto/totem-skipto.h
==============================================================================
--- trunk/src/plugins/skipto/totem-skipto.h	(original)
+++ trunk/src/plugins/skipto/totem-skipto.h	Mon Nov 10 19:08:35 2008
@@ -30,7 +30,7 @@
 #ifndef TOTEM_SKIPTO_H
 #define TOTEM_SKIPTO_H
 
-#include <gtk/gtkdialog.h>
+#include <gtk/gtk.h>
 
 #include "totem.h"
 #include "totem-skipto-plugin.h"

Modified: trunk/src/plugins/totem-plugins-engine.c
==============================================================================
--- trunk/src/plugins/totem-plugins-engine.c	(original)
+++ trunk/src/plugins/totem-plugins-engine.c	Mon Nov 10 19:08:35 2008
@@ -34,7 +34,7 @@
 #include <string.h>
 
 #include <glib/gi18n.h>
-#include <glib/gkeyfile.h>
+#include <glib.h>
 #include <gconf/gconf-client.h>
 
 #include "totem-plugin.h"

Modified: trunk/src/totem-audio-preview.c
==============================================================================
--- trunk/src/totem-audio-preview.c	(original)
+++ trunk/src/totem-audio-preview.c	Mon Nov 10 19:08:35 2008
@@ -33,7 +33,7 @@
 #include <gtk/gtk.h>
 
 #include <bacon-video-widget.h>
-#include <glib/gthread.h>
+#include <glib.h>
 #include <string.h>
 #include <unistd.h>
 #include <stdlib.h>

Modified: trunk/src/totem-object.c
==============================================================================
--- trunk/src/totem-object.c	(original)
+++ trunk/src/totem-object.c	Mon Nov 10 19:08:35 2008
@@ -29,7 +29,7 @@
 #include "config.h"
 
 #include <glib-object.h>
-#include <gtk/gtkwindow.h>
+#include <gtk/gtk.h>
 
 #include "totem.h"
 #include "totemobject-marshal.h"

Modified: trunk/src/totem-open-location.h
==============================================================================
--- trunk/src/totem-open-location.h	(original)
+++ trunk/src/totem-open-location.h	Mon Nov 10 19:08:35 2008
@@ -30,7 +30,7 @@
 #ifndef TOTEM_OPEN_LOCATION_H
 #define TOTEM_OPEN_LOCATION_H
 
-#include <gtk/gtkdialog.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: trunk/src/totem-playlist.h
==============================================================================
--- trunk/src/totem-playlist.h	(original)
+++ trunk/src/totem-playlist.h	Mon Nov 10 19:08:35 2008
@@ -23,7 +23,7 @@
 #ifndef TOTEM_PLAYLIST_H
 #define TOTEM_PLAYLIST_H
 
-#include <gtk/gtkvbox.h>
+#include <gtk/gtk.h>
 #include <totem-pl-parser.h>
 #include <gio/gio.h>
 

Modified: trunk/src/totem-preferences.c
==============================================================================
--- trunk/src/totem-preferences.c	(original)
+++ trunk/src/totem-preferences.c	Mon Nov 10 19:08:35 2008
@@ -28,7 +28,7 @@
  */
 
 #include <config.h>
-#include <gtk/gtkmessagedialog.h>
+#include <gtk/gtk.h>
 #include <glib/gi18n.h>
 #include <string.h>
 #include <stdio.h>

Modified: trunk/src/totem-resources.c
==============================================================================
--- trunk/src/totem-resources.c	(original)
+++ trunk/src/totem-resources.c	Mon Nov 10 19:08:35 2008
@@ -29,7 +29,6 @@
 
 #include <glib.h>
 #include <glib/gstdio.h>
-#include <glib/gthread.h>
 
 #include <unistd.h>
 #include <stdlib.h>

Modified: trunk/src/totem-screenshot.h
==============================================================================
--- trunk/src/totem-screenshot.h	(original)
+++ trunk/src/totem-screenshot.h	Mon Nov 10 19:08:35 2008
@@ -23,7 +23,7 @@
 #ifndef TOTEM_SCREENSHOT_H
 #define TOTEM_SCREENSHOT_H
 
-#include <gtk/gtkdialog.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: trunk/src/totem-statusbar.c
==============================================================================
--- trunk/src/totem-statusbar.c	(original)
+++ trunk/src/totem-statusbar.c	Mon Nov 10 19:08:35 2008
@@ -29,9 +29,7 @@
 
 #include <glib/gi18n.h>
 
-#include <gtk/gtklabel.h>
-#include <gtk/gtkvseparator.h>
-#include <gtk/gtkversion.h>
+#include <gtk/gtk.h>
 
 #include "totem-statusbar.h"
 #include "video-utils.h"

Modified: trunk/src/totem-statusbar.h
==============================================================================
--- trunk/src/totem-statusbar.h	(original)
+++ trunk/src/totem-statusbar.h	Mon Nov 10 19:08:35 2008
@@ -28,8 +28,7 @@
 #ifndef __TOTEM_STATUSBAR_H__
 #define __TOTEM_STATUSBAR_H__
 
-#include <gtk/gtkwidget.h>
-#include <gtk/gtkstatusbar.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: trunk/src/totem-time-label.h
==============================================================================
--- trunk/src/totem-time-label.h	(original)
+++ trunk/src/totem-time-label.h	Mon Nov 10 19:08:35 2008
@@ -2,7 +2,7 @@
 #ifndef TOTEM_TIME_LABEL_H
 #define TOTEM_TIME_LABEL_H
 
-#include <gtk/gtklabel.h>
+#include <gtk/gtk.h>
 
 #define TOTEM_TYPE_TIME_LABEL            (totem_time_label_get_type ())
 #define TOTEM_TIME_LABEL(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), TOTEM_TYPE_TIME_LABEL, TotemTimeLabel))

Modified: trunk/src/totem-uri.h
==============================================================================
--- trunk/src/totem-uri.h	(original)
+++ trunk/src/totem-uri.h	Mon Nov 10 19:08:35 2008
@@ -24,7 +24,7 @@
 #define TOTEM_URI_H
 
 #include "totem.h"
-#include <gtk/gtkwindow.h>
+#include <gtk/gtk.h>
 #include <gio/gio.h>
 
 G_BEGIN_DECLS

Modified: trunk/src/totem-video-indexer.c
==============================================================================
--- trunk/src/totem-video-indexer.c	(original)
+++ trunk/src/totem-video-indexer.c	Mon Nov 10 19:08:35 2008
@@ -32,7 +32,7 @@
 #include <gtk/gtk.h>
 
 #include <bacon-video-widget.h>
-#include <glib/gthread.h>
+#include <glib.h>
 #include <string.h>
 #include <unistd.h>
 #include <stdlib.h>



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