Remove #define _(s) and replaced with #include <glib/gi18n.h> which fixes

2004-01-07  Alex Duggan  <aldug@astrolinux.com>

	* theme-method.c:
	Remove #define _(s) and replaced with #include <glib/gi18n.h>
	which fixes bug #130757.  Add a function prototype
	(copied from font-method.c) to fix compiler warning.

	* themus-properties-view.c:
	Remove unused variable to fix compiler warning.
This commit is contained in:
Alex Duggan 2004-01-07 18:08:24 +00:00 committed by Alex Duggan
parent 702b10ad0b
commit 777ac6fd50
3 changed files with 16 additions and 3 deletions

View file

@ -1,3 +1,13 @@
2004-01-07 Alex Duggan <aldug@astrolinux.com>
* theme-method.c:
Remove #define _(s) and replaced with #include <glib/gi18n.h>
which fixes bug #130757. Add a function prototype
(copied from font-method.c) to fix compiler warning.
* themus-properties-view.c:
Remove unused variable to fix compiler warning.
2004-01-02 Andrew Sobala <aes@gnome.org>
* Makefile.am:

View file

@ -22,6 +22,7 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <glib/gi18n.h>
#include <libgnomevfs/gnome-vfs.h>
#include <libgnomevfs/gnome-vfs-cancellable-ops.h>
#include <libgnomevfs/gnome-vfs-module.h>
@ -29,7 +30,11 @@
#include <gnome-theme-info.h>
#define THEME_METHOD_DIRECTORY DIRECTORY_DIR "/theme-method.directory"
#define _(s) gettext (s)
/* this is from gnome-vfs-monitor-private.h */
void gnome_vfs_monitor_callback (GnomeVFSMethodHandle *method_handle,
GnomeVFSURI *info_uri,
GnomeVFSMonitorEventType event_type);
static void invoke_monitors(gchar *uri, gpointer data);

View file

@ -144,8 +144,6 @@ static void
do_table_attach (GtkWidget *table, GtkWidget *child, guint x, guint y, guint w, guint h,
guint xalign)
{
GtkWidget *align;
gtk_misc_set_alignment (GTK_MISC (child), xalign, 0.5);
gtk_table_attach (GTK_TABLE (table), child, x, x + w, y, y + h, GTK_FILL, 0, 6, 6);
}