From c9e92cc6aaa9b7e4903e813ac258cb5afe93c648 Mon Sep 17 00:00:00 2001 From: "gloryj.kim" Date: Fri, 5 Jun 2015 11:00:42 +0900 Subject: [PATCH] Add notification's modification Change-Id: Ie4c104d0a6f68621be3e6ba271b5d703ec7c8da5 --- provider/download-provider-notification.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/provider/download-provider-notification.c b/provider/download-provider-notification.c index f6e2f8b..f249295 100755 --- a/provider/download-provider-notification.c +++ b/provider/download-provider-notification.c @@ -23,6 +23,10 @@ #include "notification.h" #include "appsvc.h" +#include "notification_text_domain.h" +#include "notification_internal.h" +#include "notification_error.h" + #include "download-provider-defs.h" #include "download-provider-notification.h" @@ -43,10 +47,10 @@ static const char *__noti_error_str( notification_error_e err) { switch (err) { - case NOTIFICATION_ERROR_INVALID_DATA: - return "NOTIFICATION_ERROR_INVALID_DATA"; - case NOTIFICATION_ERROR_NO_MEMORY: - return "NOTIFICATION_ERROR_NO_MEMORY"; + case NOTIFICATION_ERROR_INVALID_PARAMETER: + return "NOTIFICATION_ERROR_INVALID_PARAMETER"; + case NOTIFICATION_ERROR_OUT_OF_MEMORY: + return "NOTIFICATION_ERROR_OUT_OF_MEMORY"; case NOTIFICATION_ERROR_FROM_DB: return "NOTIFICATION_ERROR_FROM_DB"; case NOTIFICATION_ERROR_ALREADY_EXIST_ID: -- 2.7.4