--- trunk/Src/wptKeylist.cpp 2006/03/20 12:49:11 186 +++ trunk/Src/wptKeylist.cpp 2006/03/22 11:04:20 187 @@ -733,7 +733,7 @@ listview_add_sub_item (lv, 0, idx++, attr); } else { - char *uid = utf8_to_wincp (attr, strlen (attr)); + char *uid = utf8_to_native (attr); if (uid) { listview_add_sub_item (lv, 0, idx++, uid); free (uid); @@ -845,7 +845,7 @@ s = key->uids->uid; if (s) { - uid = utf8_to_wincp2 (s); + uid = utf8_to_native (s); listview_add_sub_item (lv, pos, KM_COL_UID, uid); free (uid); } @@ -1136,7 +1136,7 @@ if (key->disabled || !key_is_useable (key->subkeys)) continue; - uid = utf8_to_wincp (id, strlen (id)); + uid = utf8_to_native (id); size = strlen (uid) + strlen (keyid) + 32; inf = new char[size+1]; if (!inf)