Revision: 355
http://gpredict.svn.sourceforge.net/gpredict/?rev=355&view=rev
Author: csete
Date: 2009-08-04 23:04:43 +0000 (Tue, 04 Aug 2009)
Log Message:
-----------
Fixed some late night typos.
Modified Paths:
--------------
trunk/src/compat.c
Modified: trunk/src/compat.c
===================================================================
--- trunk/src/compat.c 2009-08-04 22:14:20 UTC (rev 354)
+++ trunk/src/compat.c 2009-08-04 23:04:43 UTC (rev 355)
@@ -222,7 +222,6 @@
dir = g_strconcat (g_get_home_dir(), G_DIR_SEPARATOR_S,
".config", G_DIR_SEPARATOR_S,
"Gpredict", NULL);
- "icons", NULL);
#endif
#ifdef G_OS_WIN32
// FIXME: does this work?
@@ -252,7 +251,7 @@
gchar *buff;
buff = get_user_conf_dir ();
- filename = g_strconcat (buff, G_DIR_SEPARATOR_S, satdata, G_DIR_SEPARATOR_S, satfile, NULL);
+ filename = g_strconcat (buff, G_DIR_SEPARATOR_S, "satdata", G_DIR_SEPARATOR_S, satfile, NULL);
g_free (buff);
return filename;
@@ -269,7 +268,7 @@
gchar *buff;
buff = get_user_conf_dir ();
- filename = g_strconcat (buff, G_DIR_SEPARATOR_S, trsp, G_DIR_SEPARATOR_S, trspfile, NULL);
+ filename = g_strconcat (buff, G_DIR_SEPARATOR_S, "trsp", G_DIR_SEPARATOR_S, trspfile, NULL);
g_free (buff);
return filename;
@@ -287,7 +286,7 @@
gchar *buff;
buff = get_user_conf_dir ();
- filename = g_strconcat (buff, G_DIR_SEPARATOR_S, hwconf, G_DIR_SEPARATOR_S, hwfile, NULL);
+ filename = g_strconcat (buff, G_DIR_SEPARATOR_S, "hwconf", G_DIR_SEPARATOR_S, hwfile, NULL);
g_free (buff);
return filename;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|