From a97cfd759d060b87aaf352f9b56884af61dbfb69 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 19 Oct 2011 21:30:47 +0200 Subject: interface: Rename get_input to interface_get_input --- src/interface.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/interface.c') diff --git a/src/interface.c b/src/interface.c index 0a065ef..4665c55 100644 --- a/src/interface.c +++ b/src/interface.c @@ -56,7 +56,8 @@ void interface_init(void) /* register event handler for resize and input */ resize_source_id = g_unix_signal_add(SIGWINCH, interface_resize, NULL); - input_source_id = g_curses_input_add(menu_win, get_input, NULL); + input_source_id = g_curses_input_add(menu_win, interface_get_input, + NULL); refresh(); } @@ -205,7 +206,7 @@ void set_max_name_len(void) } } -gboolean get_input(gpointer data) +gboolean interface_get_input(gpointer data) { gint c; gboolean volume_increment = TRUE; -- cgit