summaryrefslogtreecommitdiff
path: root/lib/log/ph-log-utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/log/ph-log-utils.cpp')
-rwxr-xr-xlib/log/ph-log-utils.cpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/lib/log/ph-log-utils.cpp b/lib/log/ph-log-utils.cpp
deleted file mode 100755
index 67632ac..0000000
--- a/lib/log/ph-log-utils.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Copyright 2012 Samsung Electronics Co., Ltd
- *
- * 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
- *
- * http://floralicense.org/license/
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "phone.h"
-#include "ph-log-utils.h"
-#include <feedback.h>
-
-#include <vconf.h>
-#include <vconf-keys.h>
-
-contacts_error_e ph_log_util_del_log_by_id(Eina_List *list, ph_log_info *l_info)
-{
- PH_TRACE;
- Eina_List *l;
- Elm_Object_Item * item;
- contacts_error_e err = CONTACTS_ERROR_NONE;
- void *v_l_info;
-
- l = eina_list_data_find_list(list, l_info);
- item = l_info->item;
- v_l_info = (void *) l_info;
- EINA_LIST_FOREACH(l, l, v_l_info)
- {
- l_info = (ph_log_info *) v_l_info;
- if (item != l_info->item)
- break;
- err = (contacts_error_e) contacts_db_delete_record(_contacts_phone_log._uri, l_info->id);
- if (CONTACTS_ERROR_NONE != err)
- break;
- }
- return err;
-}
-
-void ph_log_util_svi_play(int vibration_key, int sound_key)
-{
- PH_TRACE;
- int effect_status = FALSE;
- vconf_get_bool(VCONFKEY_SETAPPL_SOUND_STATUS_BOOL, &effect_status);
- if (effect_status)
- feedback_play_type(FEEDBACK_TYPE_SOUND, (feedback_pattern_e) sound_key);
-
- vconf_get_bool(VCONFKEY_SETAPPL_VIBRATION_STATUS_BOOL, &effect_status);
- if (effect_status)
- feedback_play_type(FEEDBACK_TYPE_VIBRATION, (feedback_pattern_e) vibration_key);
-}