diff options
author | Fridrich Strba <fridrich.strba@bluewin.ch> | 2010-03-11 22:57:20 +0800 |
---|---|---|
committer | Fridrich Strba <fridrich.strba@bluewin.ch> | 2010-03-11 22:57:20 +0800 |
commit | c69e242109fcf285486d11937a60f7904f078df8 (patch) | |
tree | 907bb0d9632793005481f9d9cf72eb8a809e97ae /e-util/e-win32-reloc.c | |
parent | 38f11c946e07c2453d02ee5bff131566618cb3ca (diff) | |
download | gsoc2013-evolution-c69e242109fcf285486d11937a60f7904f078df8.tar.gz gsoc2013-evolution-c69e242109fcf285486d11937a60f7904f078df8.tar.zst gsoc2013-evolution-c69e242109fcf285486d11937a60f7904f078df8.zip |
More relocation cleanup EVOLUTION_ICONSDIR -> EVOLUTION_ICONDIR
Diffstat (limited to 'e-util/e-win32-reloc.c')
-rw-r--r-- | e-util/e-win32-reloc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/e-util/e-win32-reloc.c b/e-util/e-win32-reloc.c index d01c4c820e..ad9e126153 100644 --- a/e-util/e-win32-reloc.c +++ b/e-util/e-win32-reloc.c @@ -41,7 +41,7 @@ static const gchar *etspecdir; static const gchar *galviewsdir; static const gchar *gladedir; static const gchar *helpdir; -static const gchar *iconsdir; +static const gchar *icondir; static const gchar *imagesdir; static const gchar *libdir; static const gchar *libexecdir; @@ -123,11 +123,11 @@ setup (void) galviewsdir = replace_prefix (full_prefix, EVOLUTION_GALVIEWSDIR); gladedir = replace_prefix (full_prefix, EVOLUTION_UIDIR); helpdir = replace_prefix (full_prefix, EVOLUTION_HELPDIR); - if (g_getenv ("EVOLUTION_ICONSDIR") && - g_file_test (g_getenv ("EVOLUTION_ICONSDIR"), G_FILE_TEST_IS_DIR)) - iconsdir = g_getenv ("EVOLUTION_ICONSDIR"); + if (g_getenv ("EVOLUTION_ICONDIR") && + g_file_test (g_getenv ("EVOLUTION_ICONDIR"), G_FILE_TEST_IS_DIR)) + icondir = g_getenv ("EVOLUTION_ICONDIR"); else - iconsdir = replace_prefix (full_prefix, EVOLUTION_ICONSDIR); + icondir = replace_prefix (full_prefix, EVOLUTION_ICONDIR); if (g_getenv ("EVOLUTION_IMAGESDIR") && g_file_test (g_getenv ("EVOLUTION_IMAGESDIR"), G_FILE_TEST_IS_DIR)) imagesdir = g_getenv ("EVOLUTION_IMAGESDIR"); @@ -166,7 +166,7 @@ GETTER(etspecdir) GETTER(galviewsdir) GETTER(gladedir) GETTER(helpdir) -GETTER(iconsdir) +GETTER(icondir) GETTER(imagesdir) GETTER(libdir) GETTER(libexecdir) |