diff src/gtkprefs.c @ 10871:6240d7fd5b2c

[gaim-migrate @ 12558] Make a bunch of stuff static and rename set_gaim_user_dir to gaim_util_set_user_dir committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 25 Apr 2005 04:22:29 +0000
parents 310c5e6120fb
children bfb3ac69cdd0
line wrap: on
line diff
--- a/src/gtkprefs.c	Mon Apr 25 04:03:16 2005 +0000
+++ b/src/gtkprefs.c	Mon Apr 25 04:22:29 2005 +0000
@@ -463,7 +463,7 @@
 	g_value_unset (&val);
 }
 
-GtkTreePath *theme_refresh_theme_list()
+static GtkTreePath *theme_refresh_theme_list()
 {
 	GdkPixbuf *pixbuf;
 	GSList *themes;
@@ -518,7 +518,7 @@
 	return path;
 }
 
-void theme_install_theme(char *path, char *extn) {
+static void theme_install_theme(char *path, char *extn) {
 #ifndef _WIN32
 	gchar *command, *escaped;
 #endif
@@ -585,7 +585,7 @@
 	g_free(path);
 }
 
-void theme_dnd_recv(GtkWidget *widget, GdkDragContext *dc, guint x, guint y, GtkSelectionData *sd, 
+static void theme_dnd_recv(GtkWidget *widget, GdkDragContext *dc, guint x, guint y, GtkSelectionData *sd, 
 				guint info, guint t, gpointer data) {
 	gchar *name = sd->data;
 
@@ -2109,7 +2109,7 @@
 	return gtk_notebook_append_page(GTK_NOTEBOOK(prefsnotebook), page, gtk_label_new(text));
 }
 
-void prefs_notebook_init() {
+static void prefs_notebook_init() {
 	GtkTreeIter p, c, c2;
 	GList *l;
 	prefs_notebook_add_page(_("Buddy List"), NULL, list_page(), &c, &p, notebook_page++);