mirror of https://github.com/MidnightCommander/mc
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:
parent
fbc07a11d4
commit
470d754497
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue