diff options
author | Milan Crha <mcrha@redhat.com> | 2009-08-31 17:47:12 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-08-31 17:47:12 +0800 |
commit | 06d9b597702dfd0fede5cb35d3d10208b3e31276 (patch) | |
tree | 4d8a0a5a3f28a62917f17e0ac2ea8b4661bf18e5 /shell/e-shell.c | |
parent | 3f3e5d01b16438914b269b04c875a2090bd2027b (diff) | |
download | gsoc2013-evolution-06d9b597702dfd0fede5cb35d3d10208b3e31276.tar.gz gsoc2013-evolution-06d9b597702dfd0fede5cb35d3d10208b3e31276.tar.zst gsoc2013-evolution-06d9b597702dfd0fede5cb35d3d10208b3e31276.zip |
Fix for few compiler warnings
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 4dd72e3747..75b66555fc 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -90,7 +90,7 @@ EShell *default_shell = NULL; static gpointer parent_class; static guint signals[LAST_SIGNAL]; -#if NM_SUPPORT +#if defined(NM_SUPPORT) && NM_SUPPORT gboolean e_shell_dbus_initialize (EShell *shell); #endif @@ -953,7 +953,7 @@ shell_init (EShell *shell) g_object_ref_sink (shell->priv->preferences_window); -#if NM_SUPPORT +#if defined(NM_SUPPORT) && NM_SUPPORT e_shell_dbus_initialize (shell); #endif |