|
|
|
|
@ -413,12 +413,12 @@ void yon_save_window_loaded_config_init(template_saving_window *window, struct l
|
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
if (status==0||status==-2) status = 0;
|
|
|
|
|
else status=1;
|
|
|
|
|
if (strstr(current->data,"&")) {current->data = yon_char_replace(current->data,"&","\003");current->data = yon_char_replace(current->data,"\003","&");}
|
|
|
|
|
if (strstr(current->data,">")) current->data = yon_char_replace(current->data,">","<");
|
|
|
|
|
if (strstr(current->data,"<")) current->data = yon_char_replace(current->data,"<",">");
|
|
|
|
|
if (strstr(current->data,"&")) current->data = yon_char_replace(current->data,"&","&");
|
|
|
|
|
if (strstr(dict->data,"&")) {dict->data = yon_char_replace(dict->data,"&","\003");dict->data = yon_char_replace(dict->data,"\003","&");}
|
|
|
|
|
if (strstr(dict->data,">")) dict->data = yon_char_replace(dict->data,">","<");
|
|
|
|
|
if (strstr(dict->data,"<")) dict->data = yon_char_replace(dict->data,"<",">");
|
|
|
|
|
if (strstr(dict->data,"&")) dict->data = yon_char_replace(dict->data,"&","&");
|
|
|
|
|
char *compare_string = yon_char_unite("<s>",(char*)dict->data,"</s>\n",(char*)current->data,NULL);
|
|
|
|
|
gtk_list_store_append(window->list,&iter);
|
|
|
|
|
gtk_list_store_set(window->list,&iter,0,status,1,current->key,2,(char*)dict->data,3,(char*)current->data,4,compare_string,6,1,7,yon_config_get_section_for_key(current->key),-1);
|
|
|
|
|
|