s/g_copy_strings/g_strconcat/

This commit is contained in:
Jeff Garzik 1998-12-30 20:29:12 +00:00
parent 42ba2c3c65
commit 4f6e78d928
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1998-12-30 Jeff Garzik <jgarzik@pobox.com>
* gprop.c: s/g_copy_strings/g_strconcat/
1998-12-30 Jonathan Blandford <jrb@redhat.com>
* gaction.c (gmc_execute): now takes an filename instead of a file

View File

@ -64,7 +64,7 @@ gprop_filename_new (char *complete_filename, char *filename)
gtk_container_add (GTK_CONTAINER (frame), vbox);
gtk_widget_show (vbox);
s = g_copy_strings (_("Full name: "), complete_filename, NULL);
s = g_strconcat (_("Full name: "), complete_filename, NULL);
gtk_box_pack_start (GTK_BOX (vbox), label_new (s, 0.0, 0.5), FALSE, FALSE, 0);
g_free (s);