From f2c6a6f2debcccfb51d239834c3cf91a2c3a6c40 Mon Sep 17 00:00:00 2001 From: Claudio Takahasi Date: Mon, 19 Mar 2007 14:58:44 +0000 Subject: Moving input functions to the right files --- input/main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'input/main.c') diff --git a/input/main.c b/input/main.c index 688c8a58..2a6b3b59 100644 --- a/input/main.c +++ b/input/main.c @@ -41,7 +41,6 @@ #include "manager.h" #include "server.h" -#include "device.h" static GMainLoop *main_loop; @@ -71,7 +70,7 @@ int main(int argc, char *argv[]) /* Create event loop */ main_loop = g_main_loop_new(NULL, FALSE); - if (input_dbus_init() < 0) { + if (input_init() < 0) { error("Unable to get on D-Bus"); exit(1); } @@ -85,7 +84,7 @@ int main(int argc, char *argv[]) server_stop(); - input_dbus_exit(); + input_exit(); g_main_loop_unref(main_loop); -- cgit