Make some routines unused outside gtk/menus.c static.

svn path=/trunk/; revision=34430
This commit is contained in:
Guy Harris 2010-10-08 03:09:15 +00:00
parent e6894e3175
commit a9e7cb04cc
1 changed files with 5 additions and 5 deletions

View File

@ -349,7 +349,7 @@ build_conversation_filter(int action, gboolean show_dialog)
return buf;
}
void
static void
conversation_cb(GtkWidget * w, gpointer data _U_, int action)
{
gchar *filter;
@ -369,7 +369,7 @@ conversation_cb(GtkWidget * w, gpointer data _U_, int action)
}
}
void
static void
colorize_conversation_cb(GtkWidget * w _U_, gpointer data _U_, int action)
{
gchar *filter = NULL;
@ -420,7 +420,7 @@ colorize_conversation_cb(GtkWidget * w _U_, gpointer data _U_, int action)
}
}
void
static void
goto_conversation_frame(gboolean dir)
{
gchar *filter;
@ -456,13 +456,13 @@ goto_conversation_frame(gboolean dir)
g_free(filter);
}
void
static void
goto_next_frame_conversation_cb(GtkWidget *w _U_, gpointer d _U_)
{
goto_conversation_frame(FALSE);
}
void
static void
goto_previous_frame_conversation_cb(GtkWidget *w _U_, gpointer d _U_)
{
goto_conversation_frame(TRUE);