diff options
author | Fridrich Strba <fridrich.strba@bluewin.ch> | 2010-03-11 23:31:09 +0800 |
---|---|---|
committer | Fridrich Strba <fridrich.strba@bluewin.ch> | 2010-03-11 23:31:09 +0800 |
commit | 043eabadba20150827310c31de58bbe78fda726f (patch) | |
tree | 23ca93277aa750de38eccc22e0b7cdb0a4e543d7 /e-util/e-win32-reloc.c | |
parent | fc3cfd74bedf8263e497ca23200ba74d3de5961c (diff) | |
download | gsoc2013-evolution-043eabadba20150827310c31de58bbe78fda726f.tar.gz gsoc2013-evolution-043eabadba20150827310c31de58bbe78fda726f.tar.zst gsoc2013-evolution-043eabadba20150827310c31de58bbe78fda726f.zip |
Don't relocate inexisting EVOLUTION_CATEGORY_ICONS path
Diffstat (limited to 'e-util/e-win32-reloc.c')
-rw-r--r-- | e-util/e-win32-reloc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/e-util/e-win32-reloc.c b/e-util/e-win32-reloc.c index 3b1b601644..f99a5f582b 100644 --- a/e-util/e-win32-reloc.c +++ b/e-util/e-win32-reloc.c @@ -34,7 +34,6 @@ static const gchar *localedir = NULL; /* The others are in UTF-8 */ -static const gchar *category_icons; static const gchar *datadir; static const gchar *ecpsdir; static const gchar *etspecdir; @@ -115,7 +114,6 @@ setup (void) /* It makes sense to have some of the paths overridable with * environment variables. */ - category_icons = replace_prefix (full_prefix, EVOLUTION_CATEGORY_ICONS); datadir = replace_prefix (full_prefix, EVOLUTION_DATADIR); ecpsdir = replace_prefix (full_prefix, EVOLUTION_ECPSDIR); etspecdir = replace_prefix (full_prefix, EVOLUTION_ETSPECDIR); @@ -157,7 +155,6 @@ _e_get_##varbl (void) \ return varbl; \ } -GETTER(category_icons) GETTER(datadir) GETTER(ecpsdir) GETTER(etspecdir) |