diff options
5 files changed, 16 insertions, 7 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index bc37e7145f..7dd5d7ae18 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,12 @@ +2005-12-19 Sushma Rai <rsushma@novell.com> + + * exchange-folder-permission.c: Corrected include path of header files + which was breaking the build. + + * exchange-change-password.[ch]: Similar. + + * exchange-folder-subscription.c: Similar. + 2005-12-12 Sushma Rai <rsushma@novell.com> * exchange-account-setup.c (print_error): Passing the support URL to diff --git a/plugins/exchange-operations/exchange-change-password.c b/plugins/exchange-operations/exchange-change-password.c index 283ad46236..546101029e 100644 --- a/plugins/exchange-operations/exchange-change-password.c +++ b/plugins/exchange-operations/exchange-change-password.c @@ -25,8 +25,8 @@ #include "exchange-change-password.h" -#include <exchange/exchange-account.h> -#include <exchange/e2k-utils.h> +#include <exchange-account.h> +#include <e2k-utils.h> #include <glade/glade-xml.h> #include <gtk/gtkdialog.h> diff --git a/plugins/exchange-operations/exchange-change-password.h b/plugins/exchange-operations/exchange-change-password.h index 155fff897b..41b85d056c 100644 --- a/plugins/exchange-operations/exchange-change-password.h +++ b/plugins/exchange-operations/exchange-change-password.h @@ -4,7 +4,7 @@ #ifndef __EXCHANGE_CHANGE_PASSWORD_H__ #define __EXCHANGE_CHANGE_PASSWORD_H__ -#include <exchange/exchange-types.h> +#include <exchange-types.h> #ifdef __cplusplus extern "C" { diff --git a/plugins/exchange-operations/exchange-folder-permission.c b/plugins/exchange-operations/exchange-folder-permission.c index 85703661d4..e748773476 100644 --- a/plugins/exchange-operations/exchange-folder-permission.c +++ b/plugins/exchange-operations/exchange-folder-permission.c @@ -28,7 +28,7 @@ #include <gtk/gtkdialog.h> #include <gconf/gconf-client.h> #include <libedataserver/e-xml-hash-utils.h> -#include <exchange/exchange-account.h> +#include <exchange-account.h> #include <e-util/e-dialog-utils.h> #include <calendar/gui/e-cal-popup.h> #include <libedataserverui/e-source-selector.h> diff --git a/plugins/exchange-operations/exchange-folder-subscription.c b/plugins/exchange-operations/exchange-folder-subscription.c index 2dbeb64d87..ad7c8aae01 100644 --- a/plugins/exchange-operations/exchange-folder-subscription.c +++ b/plugins/exchange-operations/exchange-folder-subscription.c @@ -26,12 +26,12 @@ #include <glade/glade-xml.h> #include <gtk/gtk.h> #include <e-util/e-error.h> -#include <exchange/e-folder.h> +#include <e-folder.h> #include <exchange-account.h> #include <exchange-hierarchy.h> #include "exchange-hierarchy-foreign.h" -#include <exchange/e2k-types.h> -#include <exchange/exchange-types.h> +#include <e2k-types.h> +#include <exchange-types.h> #include <e2k-propnames.h> #include <libedataserver/e-xml-hash-utils.h> #include <libedataserverui/e-name-selector.h> |