aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-nm-glib.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2007-06-03 10:49:38 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2007-06-03 10:49:38 +0800
commitbdb60ce109c1a2958c89bb07b599407d26a2cf4f (patch)
tree691263b22b737cd652d26200accd031fd93c870f /shell/e-shell-nm-glib.c
parent646455c0f94ac047b3ed44dbd7e796f746451700 (diff)
downloadgsoc2013-evolution-bdb60ce109c1a2958c89bb07b599407d26a2cf4f.tar
gsoc2013-evolution-bdb60ce109c1a2958c89bb07b599407d26a2cf4f.tar.gz
gsoc2013-evolution-bdb60ce109c1a2958c89bb07b599407d26a2cf4f.tar.bz2
gsoc2013-evolution-bdb60ce109c1a2958c89bb07b599407d26a2cf4f.tar.lz
gsoc2013-evolution-bdb60ce109c1a2958c89bb07b599407d26a2cf4f.tar.xz
gsoc2013-evolution-bdb60ce109c1a2958c89bb07b599407d26a2cf4f.tar.zst
gsoc2013-evolution-bdb60ce109c1a2958c89bb07b599407d26a2cf4f.zip
Fix compilation warnings in shell directory (#441055).
svn path=/trunk/; revision=33627
Diffstat (limited to 'shell/e-shell-nm-glib.c')
-rw-r--r--shell/e-shell-nm-glib.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/e-shell-nm-glib.c b/shell/e-shell-nm-glib.c
index 5f5d68db3f..f67c744f02 100644
--- a/shell/e-shell-nm-glib.c
+++ b/shell/e-shell-nm-glib.c
@@ -55,8 +55,10 @@ static void e_shell_glib_network_monitor (libnm_glib_ctx *ctx, gpointer user_dat
}
}
+int e_shell_nm_glib_initialise (EShellWindow *window);
+void e_shell_nm_glib_dispose (EShellWindow *window);
-int e_shell_nm_glib_initialise (EShellWindow *window )
+int e_shell_nm_glib_initialise (EShellWindow *window)
{
if (!nm_ctx)
{
@@ -72,7 +74,7 @@ int e_shell_nm_glib_initialise (EShellWindow *window )
return TRUE;
}
-void e_shell_nm_glib_dispose (EShellWindow *window )
+void e_shell_nm_glib_dispose (EShellWindow *window)
{
if (id != 0 && nm_ctx != NULL) {
libnm_glib_unregister_callback (nm_ctx, id);