aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-utils.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-08-10 18:06:41 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-08-10 18:06:41 +0800
commitc03e685846f21347e5a0e9943870e99162b0bae8 (patch)
treee91c0f0af1a19949c41413d4ab892a0947cb4808 /shell/e-shell-utils.c
parentac6b7634779ef3aa145b3e5da6b726ccaf288b00 (diff)
downloadgsoc2013-evolution-c03e685846f21347e5a0e9943870e99162b0bae8.tar
gsoc2013-evolution-c03e685846f21347e5a0e9943870e99162b0bae8.tar.gz
gsoc2013-evolution-c03e685846f21347e5a0e9943870e99162b0bae8.tar.bz2
gsoc2013-evolution-c03e685846f21347e5a0e9943870e99162b0bae8.tar.lz
gsoc2013-evolution-c03e685846f21347e5a0e9943870e99162b0bae8.tar.xz
gsoc2013-evolution-c03e685846f21347e5a0e9943870e99162b0bae8.tar.zst
gsoc2013-evolution-c03e685846f21347e5a0e9943870e99162b0bae8.zip
Use privsolib instead of privlib. Link with SHELL_LIBS. Use NO_UNDEFINED.
2005-08-10 Tor Lillqvist <tml@novell.com> * Makefile.am: Use privsolib instead of privlib. Link with SHELL_LIBS. Use NO_UNDEFINED. Use EXEEXT. Use hack to workaround MSYS feature on Win32 when installing the schemas. (INCLUDES): Define EVOLUTION_IMAGESDIR like in ../e-util/e-util-private.h, not EVOLUTION_IMAGES. (idl_defines): Pass marker macro to IDL compiler, see below. * Evolution-Component.idl: Don't generate duplicate code in skels and stubs when including this file from other idl files (in particular, ../mail/Evolution-Mail.idl). Use the include_defs and inhibit pragmas unless IDL-compiling in this directory. See lists.ximian.com/pipermail/evolution-patches/2005-June/010899.html * e-shell-utils.c * e-shell-windows.c: Ue EVOLUTION_IMAGESDIR in such a way that it works even when it is a function call. svn path=/trunk/; revision=30075
Diffstat (limited to 'shell/e-shell-utils.c')
-rw-r--r--shell/e-shell-utils.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/e-shell-utils.c b/shell/e-shell-utils.c
index 195b25b986..b5a8b9b25c 100644
--- a/shell/e-shell-utils.c
+++ b/shell/e-shell-utils.c
@@ -31,6 +31,8 @@
#include <libgnome/gnome-util.h>
#include <libgnome/gnome-i18n.h>
+#include "e-util/e-util-private.h"
+
#include "e-shell-constants.h"
#include "e-shell-utils.h"
@@ -43,7 +45,7 @@ get_icon_path (const char *icon_name)
if (g_path_is_absolute (icon_name))
icon_path = g_strdup (icon_name);
else
- icon_path = g_build_filename (EVOLUTION_IMAGES, icon_name, NULL);
+ icon_path = g_build_filename (EVOLUTION_IMAGESDIR, icon_name, NULL);
if (g_file_test (icon_path, G_FILE_TEST_EXISTS)) {
return icon_path;