diff src/gtkprefs.c @ 7976:8e5a21b1efa6

[gaim-migrate @ 8653] Daniel (not David) Atallah sent me this, which is useful for the plugin writing folk committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sat, 03 Jan 2004 06:25:24 +0000
parents 83df8ad35446
children fc6b362f9c26
line wrap: on
line diff
--- a/src/gtkprefs.c	Sat Jan 03 06:22:54 2004 +0000
+++ b/src/gtkprefs.c	Sat Jan 03 06:25:24 2004 +0000
@@ -84,15 +84,6 @@
 static GtkTreeIter *prefs_notebook_add_page(const char*, GdkPixbuf*,
 											GtkWidget*, GtkTreeIter*,
 											GtkTreeIter*, int);
-static GtkWidget *prefs_checkbox(const char *, const char *, GtkWidget *);
-static GtkWidget *prefs_labeled_spin_button(GtkWidget *, const gchar *,
-											char *key, int, int,
-											GtkSizeGroup *);
-static GtkWidget *prefs_dropdown(GtkWidget *, const gchar *, GaimPrefType type,
-								 const char *, ...);
-static GtkWidget *prefs_dropdown_from_list(GtkWidget *, const gchar *,
-										   GaimPrefType type,
-										   const char *, GList *); 
 static GtkWidget *show_color_pref(GtkWidget *, gboolean);
 static void delete_prefs(GtkWidget *, void *);
 static void update_plugin_list(void *data);
@@ -110,7 +101,7 @@
 	gaim_prefs_set_int(key, value);
 }
 
-static GtkWidget *
+GtkWidget *
 prefs_labeled_spin_button(GtkWidget *box, const gchar *title, char *key,
 						 int min, int max, GtkSizeGroup *sg)
 {
@@ -180,7 +171,7 @@
 	}
 }
 
-static GtkWidget *
+GtkWidget *
 prefs_dropdown_from_list(GtkWidget *box, const gchar *title, GaimPrefType type,
 						 const char *key, GList *menuitems)
 {
@@ -265,7 +256,7 @@
 	return label;
 }
 
-static GtkWidget *
+GtkWidget *
 prefs_dropdown(GtkWidget *box, const gchar *title, GaimPrefType type,
 			   const char *key, ...)
 {
@@ -2489,7 +2480,7 @@
 		gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w)));
 }
 
-static GtkWidget *
+GtkWidget *
 prefs_checkbox(const char *text, const char *key, GtkWidget *page)
 {
 	GtkWidget *button;