diff --git a/gnome/ChangeLog b/gnome/ChangeLog index efc5a8353..dd20a3cc4 100644 --- a/gnome/ChangeLog +++ b/gnome/ChangeLog @@ -1,3 +1,9 @@ +Thu Jan 28 02:15:48 1999 Timur Bakeyev + + * gdialogs.c: fixed "regexp.h" -> "eregexp.h" conversion. + + * oldnd.c: Replaced copy_strings() with g_strconcat(). + 1999-01-26 Federico Mena Quintero * gscreen.c (panel_clist_motion): Stop the emission of the diff --git a/gnome/gdialogs.c b/gnome/gdialogs.c index ebe0b9087..6282078b7 100644 --- a/gnome/gdialogs.c +++ b/gnome/gdialogs.c @@ -7,7 +7,7 @@ #include "file.h" #include "filegui.h" #include "fileopctx.h" -#include "regex.h" +#include "eregex.h" #include "../vfs/vfs.h" enum { diff --git a/gnome/olddnd.c b/gnome/olddnd.c index 6b2689abe..86587e3c2 100644 --- a/gnome/olddnd.c +++ b/gnome/olddnd.c @@ -953,7 +953,7 @@ remove_directory (char *path) if (know_not_what_am_i_doing) query_set_sel (1); - buffer = copy_strings (_("Do you want to delete "), path, "?", NULL); + buffer = g_strconcat (_("Do you want to delete "), path, "?", NULL); i = query_dialog (_("Delete"), buffer, D_ERROR, 2, _("&Yes"), _("&No")); g_free (buffer); @@ -1655,7 +1655,7 @@ desktop_setup_icon (char *filename, char *full_pathname, GdkPoint **desired_posi } else { char *desktop_version; - desktop_version = copy_strings (full_pathname, ".desktop", NULL); + desktop_version = g_strconcat (full_pathname, ".desktop", NULL); if (!exist_file (desktop_version) && !desktop_pathname_loaded (full_pathname)) desktop_create_launch_entry (desktop_version, full_pathname, filename, desired_position); g_free (desktop_version);