diff options
Diffstat (limited to 'plugins')
-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; |