telegnome r21 - in trunk: . src



Author: cjwatson
Date: Sun Feb 24 13:44:22 2008
New Revision: 21
URL: http://svn.gnome.org/viewvc/telegnome?rev=21&view=rev

Log:
* src/gui.c: Include <libgnomeui/libgnomeui.h>.
* src/http.c, src/main.c: Include <string.h>.
* src/main.h: Include <glib/gi18n.h>.
* src/menu.h: Include <libgnomeui/gnome-app-helper.h>.
(file_menu): Use GNOMEUIINFO_MENU_QUIT_ITEM instead of
GNOMEUIINFO_MENU_EXIT_ITEM.

Modified:
   trunk/ChangeLog
   trunk/src/gui.c
   trunk/src/http.c
   trunk/src/main.c
   trunk/src/main.h
   trunk/src/menu.h

Modified: trunk/src/gui.c
==============================================================================
--- trunk/src/gui.c	(original)
+++ trunk/src/gui.c	Sun Feb 24 13:44:22 2008
@@ -23,6 +23,8 @@
 **  
 */
 
+#include <libgnomeui/libgnomeui.h>
+
 #include "gui.h"
 #include "main.h"
 #include "prefs.h"

Modified: trunk/src/http.c
==============================================================================
--- trunk/src/http.c	(original)
+++ trunk/src/http.c	Sun Feb 24 13:44:22 2008
@@ -20,6 +20,8 @@
 **  
 */
   
+#include <string.h>
+
 #include <gnome.h>
 #include <libgnomevfs/gnome-vfs.h>
 #include <gdk-pixbuf/gdk-pixbuf.h>

Modified: trunk/src/main.c
==============================================================================
--- trunk/src/main.c	(original)
+++ trunk/src/main.c	Sun Feb 24 13:44:22 2008
@@ -27,10 +27,12 @@
 #include <config.h>
 #endif /* HAVE_CONFIG_H */
 
+#include <stdio.h>
+#include <string.h>
+
 #include <gnome.h>
 #include <glib.h>
 #include <ghttp.h>
-#include <stdio.h>
 #include "main.h"
 #include "http.h"
 #include "gui.h"

Modified: trunk/src/main.h
==============================================================================
--- trunk/src/main.h	(original)
+++ trunk/src/main.h	Sun Feb 24 13:44:22 2008
@@ -26,6 +26,8 @@
 #include <config.h>
 #endif /* HAVE_CONFIG_H */
 
+#include <glib/gi18n.h>
+
 #include "gui.h"
 #include "http.h"
 

Modified: trunk/src/menu.h
==============================================================================
--- trunk/src/menu.h	(original)
+++ trunk/src/menu.h	Sun Feb 24 13:44:22 2008
@@ -6,9 +6,11 @@
 #ifndef __MENU_H__
 #define __MENU_H__
 
+#include <libgnomeui/gnome-app-helper.h>
+
 /* the menu */
 static GnomeUIInfo file_menu[] = {
-    GNOMEUIINFO_MENU_EXIT_ITEM(cb_quit, NULL),
+    GNOMEUIINFO_MENU_QUIT_ITEM(cb_quit, NULL),
     GNOMEUIINFO_END
 };
 



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