From e83f805b8fa34db8ac0b885d3fb78c0e6437c908 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 10 Jan 2013 19:13:00 +0100 Subject: Main, IOThread: move GMainLoop setup code to class EventLoop --- src/InotifyQueue.cxx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/InotifyQueue.cxx') diff --git a/src/InotifyQueue.cxx b/src/InotifyQueue.cxx index 0d19ff083..b94abeaaa 100644 --- a/src/InotifyQueue.cxx +++ b/src/InotifyQueue.cxx @@ -20,6 +20,8 @@ #include "config.h" #include "InotifyQueue.hxx" #include "UpdateGlue.hxx" +#include "Main.hxx" +#include "event/Loop.hxx" #include #include @@ -93,8 +95,9 @@ mpd_inotify_enqueue(const char *uri_utf8) { if (queue_source_id != 0) g_source_remove(queue_source_id); - queue_source_id = g_timeout_add_seconds(INOTIFY_UPDATE_DELAY_S, - mpd_inotify_run_update, NULL); + queue_source_id = main_loop->AddTimeoutSeconds(INOTIFY_UPDATE_DELAY_S, + mpd_inotify_run_update, + nullptr); for (auto i = inotify_queue.begin(), end = inotify_queue.end(); i != end;) { -- cgit v1.2.3