diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-09-18 00:55:16 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-09-18 00:55:16 +0800 |
commit | 7912355008d54df720894d1334313801f594c8f2 (patch) | |
tree | fa34064a7066b77dbdf7762c620eb5b9b689f0c6 /addressbook/contact-editor | |
parent | 4f04a07954d6d577dfd99fbb85fe60db5873d137 (diff) | |
download | gsoc2013-evolution-7912355008d54df720894d1334313801f594c8f2.tar gsoc2013-evolution-7912355008d54df720894d1334313801f594c8f2.tar.gz gsoc2013-evolution-7912355008d54df720894d1334313801f594c8f2.tar.bz2 gsoc2013-evolution-7912355008d54df720894d1334313801f594c8f2.tar.lz gsoc2013-evolution-7912355008d54df720894d1334313801f594c8f2.tar.xz gsoc2013-evolution-7912355008d54df720894d1334313801f594c8f2.tar.zst gsoc2013-evolution-7912355008d54df720894d1334313801f594c8f2.zip |
Fixed the paths of some .h #includes.
2000-09-15 Christopher James Lahey <clahey@helixcode.com>
* contact-editor/e-contact-editor.h,
contact-editor/e-contact-save-as.h,
gui/widgets/e-addressbook-model.h,
gui/widgets/e-minicard-view-widget.h,
gui/widgets/e-minicard-view.h, gui/widgets/e-minicard.c,
gui/widgets/e-minicard.h: Fixed the paths of some .h #includes.
* gui/component/addressbook.c: Removed all of the code to actually
create and display the correct view of the addressbook and moved
it to the new class gui/widgets/e-addressbook-view.c.
* gui/widgets/Makefile.am: Added everything necessary for
e-addressbook-view.c and e-addressbook-view.h.
* gui/widgets/e-addressbook-view.c,
gui/widgets/e-addressbook-view.h: New class to deal with actual
display of addresses and switching between card view and table
view.
* gui/widgets/e-minicard-view-widget.c: Made this deal more
gracefully with having the book set to NULL.
svn path=/trunk/; revision=5475
Diffstat (limited to 'addressbook/contact-editor')
-rw-r--r-- | addressbook/contact-editor/e-contact-editor.h | 4 | ||||
-rw-r--r-- | addressbook/contact-editor/e-contact-save-as.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/addressbook/contact-editor/e-contact-editor.h b/addressbook/contact-editor/e-contact-editor.h index de14b84ca3..4e47b5bd93 100644 --- a/addressbook/contact-editor/e-contact-editor.h +++ b/addressbook/contact-editor/e-contact-editor.h @@ -24,8 +24,8 @@ #include <gnome.h> #include <glade/glade.h> #include <bonobo.h> -#include <ebook/e-card.h> -#include <ebook/e-card-simple.h> +#include "addressbook/backend/ebook/e-card.h" +#include "addressbook/backend/ebook/e-card-simple.h" #ifdef __cplusplus extern "C" { diff --git a/addressbook/contact-editor/e-contact-save-as.h b/addressbook/contact-editor/e-contact-save-as.h index e6af13e8fd..d1c84dc596 100644 --- a/addressbook/contact-editor/e-contact-save-as.h +++ b/addressbook/contact-editor/e-contact-save-as.h @@ -23,8 +23,8 @@ #include <gnome.h> #include <glade/glade.h> -#include <ebook/e-card.h> -#include <ebook/e-card-simple.h> +#include "addressbook/backend/ebook/e-card.h" +#include "addressbook/backend/ebook/e-card-simple.h" #ifdef __cplusplus extern "C" { |