diff options
author | Tor Lillqvist <tml@novell.com> | 2005-06-18 23:59:56 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-06-18 23:59:56 +0800 |
commit | 2f68a1a5bfe3b652d3125b4ed07b07b289a23b96 (patch) | |
tree | fe8e2228448a5a7e7754a0cd3d6ad84c77414893 /e-util/e-util-private.h | |
parent | 3cdb34a0f0f64fff2226ce8ef806e66ffd4656c5 (diff) | |
download | gsoc2013-evolution-2f68a1a5bfe3b652d3125b4ed07b07b289a23b96.tar.gz gsoc2013-evolution-2f68a1a5bfe3b652d3125b4ed07b07b289a23b96.tar.zst gsoc2013-evolution-2f68a1a5bfe3b652d3125b4ed07b07b289a23b96.zip |
Makefile.am e-util-private.h Use EVOLUTION_IMAGESDIR and not
2005-06-18 Tor Lillqvist <tml@novell.com>
* Makefile.am
* e-util-private.h
* e-win32-reloc.c: Use EVOLUTION_IMAGESDIR and not
EVOLUTION_IMAGES for consistency. Handle also SEARCH_RULE_DIR and
EVOLUTION_GALVIEWSDIR.
svn path=/trunk/; revision=29543
Diffstat (limited to 'e-util/e-util-private.h')
-rw-r--r-- | e-util/e-util-private.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/e-util/e-util-private.h b/e-util/e-util-private.h index c4f7b90e18..407e9d181d 100644 --- a/e-util/e-util-private.h +++ b/e-util/e-util-private.h @@ -31,11 +31,13 @@ const char *_e_get_localedir (void) G_GNUC_CONST; const char *_e_get_gladedir (void) G_GNUC_CONST; const char *_e_get_helpdir (void) G_GNUC_CONST; -const char *_e_get_images (void) G_GNUC_CONST; +const char *_e_get_imagesdir (void) G_GNUC_CONST; const char *_e_get_iconsdir (void) G_GNUC_CONST; const char *_e_get_category_icons (void) G_GNUC_CONST; const char *_e_get_plugindir (void) G_GNUC_CONST; const char *_e_get_privdatadir (void) G_GNUC_CONST; +const char *_e_get_search_rule_dir (void) G_GNUC_CONST; +const char *_e_get_galviewsdir (void) G_GNUC_CONST; #undef EVOLUTION_LOCALEDIR #define EVOLUTION_LOCALEDIR _e_get_localedir () @@ -49,8 +51,11 @@ const char *_e_get_privdatadir (void) G_GNUC_CONST; #undef EVOLUTION_ETSPECDIR #define EVOLUTION_ETSPECDIR _e_get_etspecdir () +#undef EVOLUTION_IMAGESDIR +#define EVOLUTION_IMAGESDIR _e_get_imagesdir () + #undef EVOLUTION_IMAGES -#define EVOLUTION_IMAGES _e_get_images () +#define EVOLUTION_IMAGES EVOLUTION_IMAGESDIR #undef EVOLUTION_ICONSDIR #define EVOLUTION_ICONSDIR _e_get_iconsdir () @@ -64,6 +69,12 @@ const char *_e_get_privdatadir (void) G_GNUC_CONST; #undef EVOLUTION_PRIVDATADIR #define EVOLUTION_PRIVDATADIR _e_get_privdatadir () +#undef SEARCH_RULE_DIR +#define SEARCH_RULE_DIR _e_get_search_rule_dir () + +#undef EVOLUTION_GALVIEWSDIR +#define EVOLUTION_GALVIEWSDIR _e_get_galviewsdir () + #endif /* G_OS_WIN32 */ #endif /* _E_UTIL_PRIVATE_H_ */ |