Thu Mar 18 14:59:12 1999 Timur Bakeyev <mc@bat.ru>

* gnome-open-dialog.c (read_directory): s/basename/x_basename/g
This commit is contained in:
Timur Bakeyev 1999-03-18 12:09:37 +00:00
parent fbc07a11d4
commit 470d754497
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Thu Mar 18 14:59:12 1999 Timur Bakeyev <mc@bat.ru>
* gnome-open-dialog.c (read_directory): s/basename/x_basename/g
1999-03-17 Jonathan Blandford <jrb@redhat.com>
* gnome-file-property-dialog.c (generate_icon_sel): I don't know

View File

@ -116,8 +116,8 @@ strip_name_from_gde (GnomeDesktopEntry *gde,
if (!fname)
return (g_strdup (gde->name));
if (strcmp (basename (gde->location), ".directory")) {
return g_strdup (basename(gde->location));
if (strcmp (x_basename (gde->location), ".directory")) {
return g_strdup (x_basename(gde->location));
}
ptr = strrchr (gde->location, '/');
@ -152,7 +152,7 @@ insert_node_custom (GSList *order,
temp_node = sorted_list->children;
while (order) {
if (!strcmp ((gchar *) order->data, basename (name))) {
if (!strcmp ((gchar *) order->data, x_basename (name))) {
if (temp_node)
g_node_insert_before (sorted_list, temp_node, node);
else