summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index ac78525..63a16e0 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,7 +1,7 @@
/*
* Copyright 2013 Samsung Electronics Co., Ltd
*
- * Licensed under the Flora License, Version 1.0 (the "License");
+ * Licensed under the Flora License, Version 1.1 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
@@ -52,6 +52,8 @@
#include "critical_log.h"
#include "event.h"
#include "shortcut_service.h"
+#include "notification_service.h"
+#include "badge_service.h"
#if defined(FLOG)
FILE *__file_log_fp;
@@ -241,6 +243,8 @@ int main(int argc, char *argv[])
(void)util_unlink_files(SLAVE_LOG_PATH);
shortcut_service_init();
+ notification_service_init();
+ badge_service_init();
script_init();
app_create();
@@ -252,6 +256,8 @@ int main(int argc, char *argv[])
app_terminate();
script_fini();
+ badge_service_fini();
+ notification_service_fini();
shortcut_service_fini();
ecore_evas_shutdown();