1
1

Thu Jan 28 02:15:48 1999 Timur Bakeyev <mc@bat.ru>

* gdialogs.c: fixed "regexp.h" -> "eregexp.h" conversion.

	* olddnd.c: Replaced copy_strings() with g_strconcat().
Этот коммит содержится в:
Timur Bakeyev 1999-01-27 23:22:50 +00:00
родитель 07a95f9f13
Коммит 4c17f82857
3 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Thu Jan 28 02:15:48 1999 Timur Bakeyev <mc@bat.ru>
* gdialogs.c: fixed "regexp.h" -> "eregexp.h" conversion.
* oldnd.c: Replaced copy_strings() with g_strconcat().
1999-01-26 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gscreen.c (panel_clist_motion): Stop the emission of the

Просмотреть файл

@ -7,7 +7,7 @@
#include "file.h"
#include "filegui.h"
#include "fileopctx.h"
#include "regex.h"
#include "eregex.h"
#include "../vfs/vfs.h"
enum {

Просмотреть файл

@ -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);