changeset 6363:b7ef10bbe9bb

[gaim-migrate @ 6868] Some functions that should have been static weren't. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 04 Aug 2003 06:53:51 +0000
parents 7fce86372556
children 07b30424146b
files src/gtkrequest.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkrequest.c	Sun Aug 03 20:06:58 2003 +0000
+++ b/src/gtkrequest.c	Mon Aug 04 06:53:51 2003 +0000
@@ -199,7 +199,7 @@
 	return text;
 }
 
-void *
+static void *
 gaim_gtk_request_input(const char *title, const char *primary,
 					   const char *secondary, const char *default_value,
 					   gboolean multiline, gboolean masked,
@@ -323,7 +323,7 @@
 	return data;
 }
 
-void *
+static void *
 gaim_gtk_request_choice(const char *title, const char *primary,
 						const char *secondary, unsigned int default_value,
 						const char *ok_text, GCallback ok_cb,
@@ -333,7 +333,7 @@
 	return NULL;
 }
 
-void *
+static void *
 gaim_gtk_request_action(const char *title, const char *primary,
 						const char *secondary, unsigned int default_action,
 						void *user_data, size_t action_count, va_list actions)
@@ -424,7 +424,7 @@
 	return data;
 }
 
-void *
+static void *
 gaim_gtk_request_fields(const char *title, const char *primary,
 						const char *secondary, GaimRequestFields *fields,
 						const char *ok_text, GCallback ok_cb,
@@ -804,7 +804,7 @@
 	return data;
 }
 
-void
+static void
 gaim_gtk_close_request(GaimRequestType type, void *ui_handle)
 {
 	GaimGtkRequestData *data = (GaimGtkRequestData *)ui_handle;