gnome-games r8198 - in trunk: gnibbles iagno tests/libgames-support



Author: thomashpa
Date: Sat Oct 25 22:05:07 2008
New Revision: 8198
URL: http://svn.gnome.org/viewvc/gnome-games?rev=8198&view=rev

Log:
Removing a few gnome.h includes

Modified:
   trunk/gnibbles/preferences.c
   trunk/gnibbles/properties.c
   trunk/gnibbles/warp.h
   trunk/gnibbles/warpmanager.h
   trunk/gnibbles/worm.h
   trunk/iagno/ggz-network.c
   trunk/iagno/othello.c
   trunk/iagno/properties.c
   trunk/iagno/server.c
   trunk/tests/libgames-support/test-libgames-support.c

Modified: trunk/gnibbles/preferences.c
==============================================================================
--- trunk/gnibbles/preferences.c	(original)
+++ trunk/gnibbles/preferences.c	Sat Oct 25 22:05:07 2008
@@ -23,9 +23,11 @@
 #include <config.h>
 #endif
 
+#include <glib/gi18n.h>
 #include <gdk/gdkkeysyms.h>
-#include <games-frame.h>
-#include <games-controls.h>
+
+#include <libgames-support/games-frame.h>
+#include <libgames-support/games-controls.h>
 
 #ifdef GGZ_CLIENT
 #include "ggz-network.h"

Modified: trunk/gnibbles/properties.c
==============================================================================
--- trunk/gnibbles/properties.c	(original)
+++ trunk/gnibbles/properties.c	Sat Oct 25 22:05:07 2008
@@ -24,6 +24,7 @@
 #include <string.h>
 
 #include <gtk/gtk.h>
+#include <gdk/gdkkeysyms.h>
 
 #include <libgames-support/games-sound.h>
 #include <libgames-support/games-scores.h>

Modified: trunk/gnibbles/warp.h
==============================================================================
--- trunk/gnibbles/warp.h	(original)
+++ trunk/gnibbles/warp.h	Sat Oct 25 22:05:07 2008
@@ -21,7 +21,8 @@
 #define _WARP_H_
 
 #include <config.h>
-#include <gnome.h>
+
+#include <gtk/gtk.h>
 
 #define WARP     8
 

Modified: trunk/gnibbles/warpmanager.h
==============================================================================
--- trunk/gnibbles/warpmanager.h	(original)
+++ trunk/gnibbles/warpmanager.h	Sat Oct 25 22:05:07 2008
@@ -21,7 +21,8 @@
 #define _WARPMANAGER_H_
 
 #include <config.h>
-#include <gnome.h>
+
+#include <gtk/gtk.h>
 
 #include "warp.h"
 #include "worm.h"

Modified: trunk/gnibbles/worm.h
==============================================================================
--- trunk/gnibbles/worm.h	(original)
+++ trunk/gnibbles/worm.h	Sat Oct 25 22:05:07 2008
@@ -20,7 +20,7 @@
 #ifndef _WORM_H_
 #define _WORM_H_
 
-#include <gnome.h>
+#include <gtk/gtk.h>
 
 #define WORMNONE  0
 #define WORMRIGHT 1

Modified: trunk/iagno/ggz-network.c
==============================================================================
--- trunk/iagno/ggz-network.c	(original)
+++ trunk/iagno/ggz-network.c	Sat Oct 25 22:05:07 2008
@@ -18,16 +18,19 @@
  * USA
  */
 
-#include "config.h"
-#include <gnome.h>
+#include <config.h>
+
 #include <pwd.h>
 
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+
 #include <ggzmod.h>
 #include <ggz-embed.h>
 #include <ggz-gtk.h>
 
-#include "games-dlg-chat.h"
-#include "games-dlg-players.h"
+#include <libgames-support/games-dlg-chat.h>
+#include <libgames-support/games-dlg-players.h>
 
 #include "gnothello.h"
 #include "ggz-network.h"

Modified: trunk/iagno/othello.c
==============================================================================
--- trunk/iagno/othello.c	(original)
+++ trunk/iagno/othello.c	Sat Oct 25 22:05:07 2008
@@ -22,10 +22,14 @@
  */
 
 #include <config.h>
-#include <gnome.h>
+
 #include <string.h>
-#include <games-clock.h>
-#include <games-sound.h>
+
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+
+#include <libgames-support/games-clock.h>
+#include <libgames-support/games-sound.h>
 
 #include "othello.h"
 #include "gnothello.h"

Modified: trunk/iagno/properties.c
==============================================================================
--- trunk/iagno/properties.c	(original)
+++ trunk/iagno/properties.c	Sat Oct 25 22:05:07 2008
@@ -24,13 +24,14 @@
 
 #include <string.h>
 
-#include <gnome.h>
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
 
-#include <games-conf.h>
-#include <games-frame.h>
-#include <games-files.h>
-#include <games-sound.h>
-#include <games-runtime.h>
+#include <libgames-support/games-conf.h>
+#include <libgames-support/games-frame.h>
+#include <libgames-support/games-files.h>
+#include <libgames-support/games-sound.h>
+#include <libgames-support/games-runtime.h>
 
 #include "properties.h"
 #include "gnothello.h"

Modified: trunk/iagno/server.c
==============================================================================
--- trunk/iagno/server.c	(original)
+++ trunk/iagno/server.c	Sat Oct 25 22:05:07 2008
@@ -23,9 +23,8 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
-#include "config.h"
-#include <gnome.h>
-#include <ggzdmod.h>
+#include <config.h>
+
 #include <sys/types.h>
 #include <errno.h>
 #include <stdio.h>
@@ -33,6 +32,10 @@
 #include <time.h>
 #include <unistd.h>
 
+#include <gtk/gtk.h>
+#include <ggzdmod.h>
+
+
 #include "server.h"
 
 // Global game variables

Modified: trunk/tests/libgames-support/test-libgames-support.c
==============================================================================
--- trunk/tests/libgames-support/test-libgames-support.c	(original)
+++ trunk/tests/libgames-support/test-libgames-support.c	Sat Oct 25 22:05:07 2008
@@ -1,6 +1,7 @@
 #include <stdlib.h>
 #include <check.h>
-#include <gnome.h>
+
+#include <gtk/gtk.h>
 
 #include <games-clock.h>
 



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