aboutsummaryrefslogtreecommitdiff
path: root/src/StateFile.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-10 19:13:00 +0100
committerMax Kellermann <max@duempel.org>2013-01-14 09:15:49 +0100
commite83f805b8fa34db8ac0b885d3fb78c0e6437c908 (patch)
tree25c78bb3b016875aa9df2ec5449c623148083531 /src/StateFile.cxx
parentbe98afe34d550a322adea78f92f1fd2088408e96 (diff)
Main, IOThread: move GMainLoop setup code to class EventLoop
Diffstat (limited to 'src/StateFile.cxx')
-rw-r--r--src/StateFile.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/StateFile.cxx b/src/StateFile.cxx
index 29a560c7..a153a626 100644
--- a/src/StateFile.cxx
+++ b/src/StateFile.cxx
@@ -24,6 +24,8 @@
#include "TextFile.hxx"
#include "Partition.hxx"
#include "Volume.hxx"
+#include "Main.hxx"
+#include "event/Loop.hxx"
#include <glib.h>
#include <assert.h>
@@ -137,9 +139,9 @@ state_file_init(const char *path, Partition &partition)
state_file_path = g_strdup(path);
state_file_read(partition);
- save_state_source_id = g_timeout_add_seconds(5 * 60,
- timer_save_state_file,
- &partition);
+ save_state_source_id =
+ main_loop->AddTimeoutSeconds(5 * 60, timer_save_state_file,
+ &partition);
}
void