#include "setting-ringtone-main.h"
#include "setting-ringtone-util.h"
#include "setting-common-draw-widget.h"
+#include "setting-common-string.h"
#include <system_settings.h>
static int _view_create(void *cb);
{
if (!node_data)
continue;
+ //do not display default tone that is not possible to remove
+ if (node_data->path && node_data->name
+ && strstr(SETTING_DEFAULT_CALL_TONE_SDK, node_data->name) != NULL
+ && strstr(SETTING_DEFAULT_CALL_TONE_SDK, node_data->path) != NULL)
+ continue;
if (node_data->path && node_data->name)
snprintf(full_path, PATH_MAX, "%s/%s",
node_data->path, node_data->name);