# HG changeset patch # User Christian Hammond # Date 1059980031 0 # Node ID b7ef10bbe9bbda7445d9931e7a1c9bb7b10e3276 # Parent 7fce86372556e8ac8cdb91df70b916767d3c211b [gaim-migrate @ 6868] Some functions that should have been static weren't. committer: Tailor Script diff -r 7fce86372556 -r b7ef10bbe9bb src/gtkrequest.c --- 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;