From 5b18cf22680c76abb1262a6b75a30b8a37899467 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 15 May 2005 20:16:26 +0000 Subject: r6795: Make some functions static and remove some unused ones. (This used to be commit 46509eb89980bfe6dabd71264d570ea356ee5a22) --- source4/gtk/common/select.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/gtk/common/select.c') diff --git a/source4/gtk/common/select.c b/source4/gtk/common/select.c index 6149182b80..61b9649657 100644 --- a/source4/gtk/common/select.c +++ b/source4/gtk/common/select.c @@ -31,7 +31,7 @@ const char *gtk_select_domain_dialog_get_domain(GtkSelectDomainDialog *d) return gtk_entry_get_text(GTK_ENTRY(d->entry_domain)); } -void gtk_select_domain_dialog_init (GtkSelectDomainDialog *select_domain_dialog) +static void gtk_select_domain_dialog_init (GtkSelectDomainDialog *select_domain_dialog) { GtkWidget *dialog_vbox1; GtkWidget *hbox1; @@ -184,7 +184,7 @@ const char *gtk_select_host_dialog_get_host (GtkSelectHostDialog *d) return gtk_entry_get_text(GTK_ENTRY(d->entry_host)); } -void gtk_select_host_dialog_init (GtkSelectHostDialog *select_host_dialog) +static void gtk_select_host_dialog_init (GtkSelectHostDialog *select_host_dialog) { GtkWidget *dialog_vbox2; GtkWidget *hbox2; -- cgit