diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-07-13 04:12:31 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-07-13 04:12:31 +0800 |
commit | 35314083951b380140d0c78890fde7d4ad991d52 (patch) | |
tree | 08da0c8ad9fa9a154e247cd6c536f342f9dd87b9 | |
parent | 9a60e0615e3b1f004b31461dfa4fb213a5fabca6 (diff) | |
download | gsoc2013-evolution-35314083951b380140d0c78890fde7d4ad991d52.tar.gz gsoc2013-evolution-35314083951b380140d0c78890fde7d4ad991d52.tar.zst gsoc2013-evolution-35314083951b380140d0c78890fde7d4ad991d52.zip |
Fix a bunch of new implicit function declarations.
2007-07-12 Matthew Barnes <mbarnes@redhat.com>
* plugins/exchange-operations/exchange-delegates-user.c:
Fix a bunch of new implicit function declarations.
svn path=/trunk/; revision=33802
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-delegates-user.c | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 397c17e56e..12f100886d 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,8 @@ +2007-07-12 Matthew Barnes <mbarnes@redhat.com> + + * exchange-delegates-user.c: + Fix a bunch of new implicit function declarations. + 2007-07-09 Chenthill Palanisamy <pchenthill@novell.com> reviewed by: Veerapuram Varadhan <vvaradhan@novell.com> diff --git a/plugins/exchange-operations/exchange-delegates-user.c b/plugins/exchange-operations/exchange-delegates-user.c index 8964cfea44..50bcef4b11 100644 --- a/plugins/exchange-operations/exchange-delegates-user.c +++ b/plugins/exchange-operations/exchange-delegates-user.c @@ -23,10 +23,15 @@ #include <config.h> #endif +#include "exchange-delegates.h" +#include "exchange-delegates-user.h" + #include <mail/mail-ops.h> #include <mail/mail-component.h> +#include <mail/mail-send-recv.h> #include <camel/camel-multipart.h> -#include "exchange-delegates-user.h" +#include <camel/camel-stream-mem.h> +#include <exchange-account.h> #include <e2k-global-catalog.h> #include <e2k-marshal.h> #include <e2k-sid.h> @@ -167,7 +172,7 @@ parent_window_destroyed (gpointer dialog, GObject *where_parent_window_was) /* Maps the role_nam parameter to their corresponding Full role name */ -const char * +static const char * map_to_full_role_name (E2kPermissionsRole role_nam) { const char *role_name; |