From 84c55f4e983c4458a08f9bd19fe63b3fd7af2fa7 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 5 Jun 2009 14:48:29 +0200 Subject: Fix even more compiler warnings and disable one for format strings --- shell/e-shell-window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell') diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 6e8215c63e..685b5a822f 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -51,7 +51,7 @@ #include -#if NM_SUPPORT +#if defined(NM_SUPPORT) && NM_SUPPORT gboolean e_shell_dbus_initialise (EShell *shell); #endif @@ -572,7 +572,7 @@ setup_statusbar_notebook (EShellWindow *window) static void setup_nm_support (EShellWindow *window) { -#if NM_SUPPORT +#if defined(NM_SUPPORT) && NM_SUPPORT e_shell_dbus_initialise (window->priv->shell.eshell); #endif } -- cgit