[monkey-bubble: 90/753] s/g_copy_strings/g_strconcat/



commit dfa76dd077f8309b239d90b5cfdfaa1939371ff6
Author: Jeff Garzik <jgarzik src gnome org>
Date:   Wed Dec 30 18:53:35 1998 +0000

    s/g_copy_strings/g_strconcat/

 libgnome/gnome-score.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/libgnome/gnome-score.c b/libgnome/gnome-score.c
index 1baa0d2..f48c9c2 100644
--- a/libgnome/gnome-score.c
+++ b/libgnome/gnome-score.c
@@ -47,11 +47,10 @@ static gchar *
 gnome_get_score_file_name (const gchar * progname, const gchar * level)
 {
    if (level)
-     return g_copy_strings (SCORE_PATH "/",
+     return g_strconcat (SCORE_PATH "/",
 			    progname, ".", level, ".scores", NULL);
    else
-     return g_copy_strings (SCORE_PATH "/",
-			    progname, ".scores", NULL);
+     return g_strconcat (SCORE_PATH "/", progname, ".scores", NULL);
 }
 
 static void



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]