From 29201b7558928f5b8319b054a4a0bf76429a4807 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Sat, 12 Feb 2000 04:35:53 +0000 Subject: Add the e-text directory to the includes list. 2000-02-11 Christopher James Lahey * Makefile.am: Add the e-text directory to the includes list. * message-list.c: Change the call to e_cell_text_new, since there's an added argument. svn path=/trunk/; revision=1744 --- mail/ChangeLog | 7 +++++++ mail/Makefile.am | 3 ++- mail/message-list.c | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 40f182f5f1..a29a52b1df 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2000-02-11 Christopher James Lahey + + * Makefile.am: Add the e-text directory to the includes list. + + * message-list.c: Change the call to e_cell_text_new, since + there's an added argument. + 2000-02-09 Christopher James Lahey * Makefile.am: Added libetext as libetable depends on it. diff --git a/mail/Makefile.am b/mail/Makefile.am index 2cc47dadbc..36c61e427d 100644 --- a/mail/Makefile.am +++ b/mail/Makefile.am @@ -5,7 +5,8 @@ INCLUDES = \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ -DEVOLUTION_ICONSDIR=\""$(iconsdir)"\" \ -DEVOLUTION_LOCALEDIR=\""$(datadir)/locale"\" \ - -I$(srcdir)/../widgets \ + -I$(top_srcdir)/widgets \ + -I$(top_srcdir)/widgets/e-text \ $(BONOBO_HTML_GNOME_CFLAGS) EVOLUTION_MAIL_CORBA_GENERATED = \ diff --git a/mail/message-list.c b/mail/message-list.c index d7449e47fb..2cb5044f6c 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -125,7 +125,7 @@ message_list_init_renderers (MessageList *message_list) message_list->render_text = e_cell_text_new ( message_list->table_model, - NULL, GTK_JUSTIFY_LEFT); + NULL, GTK_JUSTIFY_LEFT, FALSE); message_list->render_online_status = e_cell_checkbox_new (); message_list->render_message_status = e_cell_checkbox_new (); -- cgit