g_getenv() returns a const string.

2002-01-14  Sven Neumann  <sven@gimp.org>

	* gtk/gtkrc.c: g_getenv() returns a const string.
This commit is contained in:
Sven Neumann 2002-01-14 07:42:45 +00:00 committed by Sven Neumann
parent d8ac56c058
commit 83bcca308f
8 changed files with 32 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-01-14 Sven Neumann <sven@gimp.org>
* gtk/gtkrc.c: g_getenv() returns a const string.
2002-01-14 Hasbullah Bin Pit <sebol@ikhlas.com>
* configure.in: Added ms at ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
2002-01-14 Sven Neumann <sven@gimp.org>
* gtk/gtkrc.c: g_getenv() returns a const string.
2002-01-14 Hasbullah Bin Pit <sebol@ikhlas.com>
* configure.in: Added ms at ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
2002-01-14 Sven Neumann <sven@gimp.org>
* gtk/gtkrc.c: g_getenv() returns a const string.
2002-01-14 Hasbullah Bin Pit <sebol@ikhlas.com>
* configure.in: Added ms at ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
2002-01-14 Sven Neumann <sven@gimp.org>
* gtk/gtkrc.c: g_getenv() returns a const string.
2002-01-14 Hasbullah Bin Pit <sebol@ikhlas.com>
* configure.in: Added ms at ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
2002-01-14 Sven Neumann <sven@gimp.org>
* gtk/gtkrc.c: g_getenv() returns a const string.
2002-01-14 Hasbullah Bin Pit <sebol@ikhlas.com>
* configure.in: Added ms at ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
2002-01-14 Sven Neumann <sven@gimp.org>
* gtk/gtkrc.c: g_getenv() returns a const string.
2002-01-14 Hasbullah Bin Pit <sebol@ikhlas.com>
* configure.in: Added ms at ALL_LINGUAS.

View File

@ -1,3 +1,7 @@
2002-01-14 Sven Neumann <sven@gimp.org>
* gtk/gtkrc.c: g_getenv() returns a const string.
2002-01-14 Hasbullah Bin Pit <sebol@ikhlas.com>
* configure.in: Added ms at ALL_LINGUAS.

View File

@ -299,7 +299,8 @@ static GSList *rc_dir_stack = NULL;
static gchar *
gtk_rc_make_default_dir (const gchar *type)
{
gchar *var, *path;
const gchar *var;
gchar *path;
var = g_getenv ("GTK_EXE_PREFIX");
if (var)
@ -345,7 +346,8 @@ gtk_rc_get_im_module_file (void)
gchar *
gtk_rc_get_theme_dir (void)
{
gchar *var, *path;
const gchar *var;
gchar *path;
var = g_getenv ("GTK_DATA_PREFIX");
if (var)