diff --git a/src/eitd/xmlutil.cpp b/src/eitd/xmlutil.cpp index 7a2e58eb1..57d321067 100644 --- a/src/eitd/xmlutil.cpp +++ b/src/eitd/xmlutil.cpp @@ -421,12 +421,12 @@ static void write_indexxml_footer(FILE *fd) fprintf(fd, "\n"); } -void cp(char * from, char * to) -{ - char cmd[256]; - snprintf(cmd, 256, "cp -f %s %s", from, to); - system(cmd); -} +// void cp(char * from, char * to) +// { +// char cmd[256]; +// snprintf(cmd, 256, "cp -f %s %s", from, to); +// system(cmd); +// } void writeEventsToFile(char *epgdir) { @@ -484,7 +484,7 @@ _done: sprintf(filename, "%s/index.xml", epgdir); - cp(tmpname, filename); + rename(tmpname, filename); unlink(tmpname); return ; diff --git a/src/gui/personalize.cpp b/src/gui/personalize.cpp index 3e52acb4a..c9c21efd1 100644 --- a/src/gui/personalize.cpp +++ b/src/gui/personalize.cpp @@ -719,16 +719,10 @@ void CPersonalizeGui::addSeparator(const int& widget_id, const neutrino_locale_t //expands with parameter within you can show or hide this item in personalize options void CPersonalizeGui::addSeparator(CMenuWidget &widget, const neutrino_locale_t locale_text, const int& item_mode) { -#if 0 - menu_item_t to_add_sep[2] = { {&widget, GenericMenuSeparatorLine, false, locale_text, NULL, item_mode, NULL}, - {&widget, new CMenuSeparator(CMenuSeparator::LINE | CMenuSeparator::STRING, locale_text), false, locale_text, NULL, item_mode, NULL}}; -#endif if (locale_text == NONEXISTANT_LOCALE) { - //v_item.push_back(to_add_sep[0]); menu_item_t to_add_sep = {&widget, GenericMenuSeparatorLine, false, locale_text, NULL, item_mode, NULL}; v_item.push_back(to_add_sep); } else { - //v_item.push_back(to_add_sep[1]); menu_item_t to_add_sep = {&widget, new CMenuSeparator(CMenuSeparator::LINE | CMenuSeparator::STRING, locale_text), false, locale_text, NULL, item_mode, NULL}; v_item.push_back(to_add_sep); }