aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-file.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2002-11-06 11:36:12 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-11-06 11:36:12 +0800
commit4a3104726b5dcdef9ee3f8c16390fa46260027cc (patch)
tree901cbac0960892ac50c1c2af9869e3866dd9a1c0 /filter/filter-file.c
parent7d71285ce226a2eb684260c903d8f1760eb61497 (diff)
downloadgsoc2013-evolution-4a3104726b5dcdef9ee3f8c16390fa46260027cc.tar
gsoc2013-evolution-4a3104726b5dcdef9ee3f8c16390fa46260027cc.tar.gz
gsoc2013-evolution-4a3104726b5dcdef9ee3f8c16390fa46260027cc.tar.bz2
gsoc2013-evolution-4a3104726b5dcdef9ee3f8c16390fa46260027cc.tar.lz
gsoc2013-evolution-4a3104726b5dcdef9ee3f8c16390fa46260027cc.tar.xz
gsoc2013-evolution-4a3104726b5dcdef9ee3f8c16390fa46260027cc.tar.zst
gsoc2013-evolution-4a3104726b5dcdef9ee3f8c16390fa46260027cc.zip
fixed gnome-stock stuff
svn path=/trunk/; revision=18578
Diffstat (limited to 'filter/filter-file.c')
-rw-r--r--filter/filter-file.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/filter/filter-file.c b/filter/filter-file.c
index b06dc3eddb..4f663efadb 100644
--- a/filter/filter-file.c
+++ b/filter/filter-file.c
@@ -28,9 +28,8 @@
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
-#include <gtk/gtkwidget.h>
-#include <libgnome/gnome-defs.h>
+#include <gtk/gtk.h>
#include <libgnome/gnome-i18n.h>
#include <libgnomeui/gnome-dialog.h>
#include <libgnomeui/gnome-dialog-util.h>
@@ -288,7 +287,7 @@ get_widget (FilterElement *fe)
entry = gnome_file_entry_gtk_entry (GNOME_FILE_ENTRY (fileentry));
gtk_entry_set_text (GTK_ENTRY (entry), file->path);
- g_signal_connect (entry, "changed", entry_changed, fe);
+ g_signal_connect (entry, "changed", GTK_SIGNAL_FUNC (entry_changed), fe);
return fileentry;
}