summaryrefslogtreecommitdiff
path: root/examples/filesel
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-01-03 19:26:36 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-01-03 19:26:36 +0000
commit44ec61dd97f1e159457b24458cf86ec39660efd7 (patch)
tree036b478f431462c22a8e0464d58854b2e86f4233 /examples/filesel
parent6803d93d38eb7f1cf09b89eeaf0cb414ab001d15 (diff)
downloadgtk+-44ec61dd97f1e159457b24458cf86ec39660efd7.tar.gz
Re-extract.
2005-01-03 Matthias Clasen <mclasen@redhat.com> * examples/*: Re-extract. * docs/tutorial/gtk-tut.sgml: Small corrections.
Diffstat (limited to 'examples/filesel')
-rw-r--r--examples/filesel/filesel.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/filesel/filesel.c b/examples/filesel/filesel.c
index 85527fb304..33eaef7a78 100644
--- a/examples/filesel/filesel.c
+++ b/examples/filesel/filesel.c
@@ -1,10 +1,9 @@
-#include <config.h>
#include <gtk/gtk.h>
/* Get the selected filename and print it to the console */
-void file_ok_sel( GtkWidget *w,
- GtkFileSelection *fs )
+static void file_ok_sel( GtkWidget *w,
+ GtkFileSelection *fs )
{
g_print ("%s\n", gtk_file_selection_get_filename (GTK_FILE_SELECTION (fs)));
}